fixed null filters for snmp table

This commit is contained in:
gabryon99 2020-06-24 21:11:03 +02:00
parent 0c779e0f4e
commit e2e1c965df
3 changed files with 3 additions and 2 deletions

View file

@ -155,6 +155,7 @@ class DataTableUtils {
*/
static setCurrentFilter(tableAPI) {
if (!tableAPI.state.loaded()) return;
if (!tableAPI.state.loaded().filters) return;
const filters = tableAPI.state.loaded().filters;