mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Fix split table state for storage containers [SCI-11138]
This commit is contained in:
parent
3a792ea737
commit
cf22bc946a
2 changed files with 5 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
</div>
|
||||
<div class="h-full bg-white px-4">
|
||||
<DataTable :columnDefs="columnDefs"
|
||||
tableId="StorageLocationsContainer"
|
||||
:tableId="tableId"
|
||||
:dataUrl="dataSource"
|
||||
ref="table"
|
||||
:reloadingTable="reloadingTable"
|
||||
|
@ -123,7 +123,9 @@ export default {
|
|||
paginationMode() {
|
||||
return this.withGrid ? 'none' : 'pages';
|
||||
},
|
||||
|
||||
tableId() {
|
||||
return this.withGrid ? 'StorageLocationsContainerGrid' : 'StorageLocationsContainer';
|
||||
},
|
||||
columnDefs() {
|
||||
let columns = [];
|
||||
|
||||
|
|
|
@ -696,6 +696,7 @@ class Extends
|
|||
Repositories_archived_state
|
||||
StorageLocationsTable_active_state
|
||||
StorageLocationsContainer_active_state
|
||||
StorageLocationsContainerGrid_active_state
|
||||
task_step_states
|
||||
results_order
|
||||
repository_export_file_type
|
||||
|
|
Loading…
Reference in a new issue