mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-09 22:23:28 +08:00
fix columns check [fixes SCI-2408]
This commit is contained in:
parent
cb7023c18e
commit
5f1489a100
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ var RepositoryDatatable = (function(global) {
|
|||
present_columns.push(id);
|
||||
}
|
||||
});
|
||||
if( !_.isEqual(columns_ids, present_columns) ) {
|
||||
if( !_.isEqual(columns_ids.sort(), present_columns.sort()) ) {
|
||||
alert($(TABLE_ID).data('columns-changed'));
|
||||
animateSpinner();
|
||||
location.reload();
|
||||
|
|
Loading…
Reference in a new issue