Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui: HealthCheck Search/Sort/Filtering #9314

Merged
merged 14 commits into from
Dec 7, 2020
Merged
Prev Previous commit
Next Next commit
Fixup CheckID search predicate
  • Loading branch information
johncowen committed Dec 3, 2020

Verified

This commit was signed with the committer’s verified signature.
mcollina Matteo Collina
commit 3979c2b32b3bbe9612fb99bacd88d3daf5b0a341
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ export default {
item.ServiceID.toLowerCase().indexOf(lower) !== -1
);
},
ID: (item, value) => (item.Service.ID || '').toLowerCase().indexOf(value.toLowerCase()) !== -1,
CheckID: (item, value) => (item.CheckID || '').toLowerCase().indexOf(value.toLowerCase()) !== -1,
Notes: (item, value) =>
item.Notes.toString()
.toLowerCase()