After clear filters not reload table [SCI-6101][SCI-6102] (#3661)

Co-authored-by: Anton <anton@scinote.net>
This commit is contained in:
aignatov-bio 2021-11-16 14:12:57 +01:00 committed by GitHub
parent c8fd0dce51
commit 27d6453527
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -37,7 +37,6 @@ window.initBMTFilter = () => {
clearFilters() {
this.clearSearchError();
this.dataTableElement.removeAttr('data-external-ids');
this.reloadDataTable();
},
closeFilters() {
$(this.$el).closest('.dropdown').removeClass('open');

View file

@ -126,6 +126,7 @@
},
closeSavedFilters() {
$('.saved-filters-container').removeClass('open');
return true;
},
toggleSavedFilters() {
$('.saved-filters-container').toggleClass('open');
@ -136,7 +137,6 @@
});
},
loadFilters(filters) {
this.toggleSavedFilters();
this.clearFilters();
let id = 1;
@ -165,7 +165,6 @@
);
}
});
this.fetchCIDs();
}
}
}