We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a859092 commit 63d5913Copy full SHA for 63d5913
modules/ROOT/partials/configuration/mentions_fetch.adoc
@@ -27,7 +27,9 @@ tinymce.init({
27
}
28
usersRequest.then((users) => {
29
/* `query.term` is the text the user typed after the '@' */
30
- users = users.filter((user) => user.name.toLowerCase().includes(query.term.toLowerCase()))
+ users = users.filter((user) => {
31
+ return user.name.toLowerCase().includes(query.term.toLowerCase());
32
+ });
33
34
users = users.slice(0, 10);
35
0 commit comments