fixed host pool member sorting

This commit is contained in:
gabryon99 2020-07-28 22:36:54 +02:00
parent 301b8ce83c
commit f94ce33334
7 changed files with 89 additions and 27 deletions

View file

@ -132,6 +132,10 @@ class DataTableUtils {
for (let filter of filters) {
const $entry = createEntry(filter.label, filter.key, (e) => {
// if the filter have a callback then call it
if (filter.callback) {
filter.callback();
}
tableAPI.column(columnIndex).search(filter.regex, true, false).draw();
});