mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +01:00
* fixes #10173 - Task page search bar only searches task titles, not Notes (#10173) * Fixing unit test: Test expect task to have note, but it has notes.
This commit is contained in:
committed by
Sabe Jones
parent
a6106a801b
commit
21cf5d2321
@@ -584,7 +584,7 @@ export default {
|
||||
/* eslint-disable no-extra-parens */
|
||||
return (
|
||||
task.text.toLowerCase().indexOf(searchTextLowerCase) > -1 ||
|
||||
(task.note && task.note.toLowerCase().indexOf(searchTextLowerCase) > -1) ||
|
||||
(task.notes && task.notes.toLowerCase().indexOf(searchTextLowerCase) > -1) ||
|
||||
(task.checklist && task.checklist.length > 0 &&
|
||||
task.checklist.some(checkItem => checkItem.text.toLowerCase().indexOf(searchTextLowerCase) > -1))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user