mirror of
https://github.com/ntop/ntopng.git
synced 2026-07-10 00:14:24 +00:00
Added trim to Vue table search to ignore leading/trailing spaces (#10550)
This commit is contained in:
parent
1726494382
commit
9af254f7f3
1 changed files with 1 additions and 1 deletions
|
|
@ -644,7 +644,7 @@ function filterRows(rows, searchTerm) {
|
|||
return rows;
|
||||
}
|
||||
|
||||
searchTerm = searchTerm.toLowerCase();
|
||||
searchTerm = searchTerm.trim().toLowerCase();
|
||||
|
||||
return rows.filter(row => {
|
||||
// Check each visible column for the search term
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue