Skip to content

Commit

Permalink
feat(eighth): add searching activities by desc (closes #1683)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarushtools authored and alanzhu0 committed Jul 5, 2024
1 parent d467fdb commit f164994
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions intranet/static/js/eighth/signup.search.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ $(function() {
show = true;
}
}
// description
if (activity.description.toLowerCase().indexOf(search) !== -1) {
show = true;
}

var cmd = search.split(":");
if (cmd.length > 1) {
Expand Down

0 comments on commit f164994

Please sign in to comment.