summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/at_mention_provider.jsx2
-rw-r--r--web/react/components/command_provider.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/at_mention_provider.jsx b/web/react/components/at_mention_provider.jsx
index 4d68fef9d..2feaad379 100644
--- a/web/react/components/at_mention_provider.jsx
+++ b/web/react/components/at_mention_provider.jsx
@@ -33,7 +33,7 @@ class AtMentionSuggestion extends React.Component {
let className = 'mentions-name';
if (isSelection) {
- className += ' mentions-focus';
+ className += ' suggestion--selected';
}
return (
diff --git a/web/react/components/command_provider.jsx b/web/react/components/command_provider.jsx
index 0526e09b1..98a89cba0 100644
--- a/web/react/components/command_provider.jsx
+++ b/web/react/components/command_provider.jsx
@@ -12,7 +12,7 @@ class CommandSuggestion extends React.Component {
let className = 'command-name';
if (isSelection) {
- className += ' command--selected';
+ className += ' suggestion--selected';
}
return (