added new adb dashboard
This commit is contained in:
@@ -742,7 +742,13 @@ Vue.component('tt-table', {
|
||||
}
|
||||
} else if (header.filter === 'select' || header.filter === 'iconSelect' || header.filter === 'autocomplete') {
|
||||
if (filterValue === '') continue;
|
||||
if (filterValue !== row[header.key]?.toString()) {
|
||||
if (Array.isArray(filterValue)) {
|
||||
if (filterValue.length === 0) continue;
|
||||
if (!filterValue.includes(row[header.key]?.toString())) {
|
||||
match = false;
|
||||
break;
|
||||
}
|
||||
} else if (filterValue !== row[header.key]?.toString()) {
|
||||
match = false;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user