Skip to content

Commit 983cea2

Browse files
add url based searching too
1 parent 14789cd commit 983cea2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sde_indexing_helper/static/js/collection_list.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,9 @@ $(document).ready(function () {
418418
let row = $(this.node());
419419
let name = row.find('td').first().text().toLowerCase();
420420
let configFolder = row.data('config-folder').toLowerCase();
421+
let url = row.find('td').eq(1).text().toLowerCase();
421422

422-
if (name.includes(query) || configFolder.includes(query)) {
423+
if (name.includes(query) || configFolder.includes(query) || url.includes(query)) {
423424
row.show();
424425
} else {
425426
row.hide();

0 commit comments

Comments
 (0)