aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2018-01-17 16:47:23 +0100
committerNoah Loomans <noahloomans@gmail.com>2018-01-17 16:47:23 +0100
commit71c95bb19be0446bab80abffd9d4fc563374def3 (patch)
treeea5e1790bf6500b31874f07a4bc8b73e4067371f
parent2232877ed5b3c0b60789940d2a367726ee8919c5 (diff)
Fix typo
-rw-r--r--src/client/react/reducers/search.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/react/reducers/search.js b/src/client/react/reducers/search.js
index 7c7e917..2274a33 100644
--- a/src/client/react/reducers/search.js
+++ b/src/client/react/reducers/search.js
@@ -50,7 +50,7 @@ const search = (state = DEFAULT_STATE, action) => {
let isExactMatch = false;
// Is the typed value exactly the same as the first result? Then show the
- // appropiate icon instead of the generic search icon.
+ // appropriate icon instead of the generic search icon.
if ((results.length === 1) && (action.searchText === users.byId[results[0]].value)) {
[selectedResult] = results;
isExactMatch = true;