summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-12-06 10:50:56 -0500
committerChristopher Speller <crspeller@gmail.com>2016-12-06 10:50:56 -0500
commit42f28886cca4ddf0f2814ce27d6dfbce95aa1625 (patch)
tree1ae919a51b7d3b606a3c49aebfc963d778f1c265 /webapp/utils
parent026553e4f87bfc647a5c03129752e30fc523fa07 (diff)
downloadchat-42f28886cca4ddf0f2814ce27d6dfbce95aa1625.tar.gz
chat-42f28886cca4ddf0f2814ce27d6dfbce95aa1625.tar.bz2
chat-42f28886cca4ddf0f2814ce27d6dfbce95aa1625.zip
Autocomplete is now case insensitive (#4709)
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/async_client.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/utils/async_client.jsx b/webapp/utils/async_client.jsx
index 481f85000..9bcb4e07f 100644
--- a/webapp/utils/async_client.jsx
+++ b/webapp/utils/async_client.jsx
@@ -989,7 +989,7 @@ export function getSuggestedCommands(command, suggestionId, component) {
}
},
(err) => {
- dispatchError(err, 'getCommandSuggestions');
+ dispatchError(err, 'getSuggestedCommands');
}
);
}