mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-12-10 06:06:24 +08:00
Fix for assign view
This commit is contained in:
parent
8e20dccc66
commit
334da7c3ec
1 changed files with 3 additions and 1 deletions
|
|
@ -182,7 +182,9 @@ var MyModuleRepositories = (function() {
|
|||
stateLoadCallback: function(settings, callback) {
|
||||
var loadStateUrl = $(tableContainer).data('load-state-url');
|
||||
$.post(loadStateUrl, function(json) {
|
||||
json.state.columns[0].visible = false;
|
||||
if (!options.assign_mode) {
|
||||
json.state.columns[0].visible = false;
|
||||
}
|
||||
callback(json.state);
|
||||
});
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue