aboutsummaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
Diffstat (limited to 'web_src')
-rw-r--r--web_src/js/features/comp/ComboMarkdownEditor.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/web_src/js/features/comp/ComboMarkdownEditor.js b/web_src/js/features/comp/ComboMarkdownEditor.js
index 3eb8bf7076..eb73b0914d 100644
--- a/web_src/js/features/comp/ComboMarkdownEditor.js
+++ b/web_src/js/features/comp/ComboMarkdownEditor.js
@@ -107,8 +107,9 @@ class ComboMarkdownEditor {
expander?.addEventListener('text-expander-change', ({detail: {key, provide, text}}) => {
if (key === ':') {
const matches = [];
+ const textLowerCase = text.toLowerCase();
for (const name of emojiKeys) {
- if (name.includes(text)) {
+ if (name.toLowerCase().includes(textLowerCase)) {
matches.push(name);
if (matches.length >= maxExpanderMatches) break;
}
@@ -129,8 +130,9 @@ class ComboMarkdownEditor {
provide({matched: true, fragment: ul});
} else if (key === '@') {
const matches = [];
+ const textLowerCase = text.toLowerCase();
for (const obj of window.config.tributeValues) {
- if (obj.key.includes(text)) {
+ if (obj.key.toLowerCase().includes(textLowerCase)) {
matches.push(obj);
if (matches.length >= maxExpanderMatches) break;
}