mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-03 19:24:48 +08:00
Merge pull request #674 from okriuchykhin/ok_SCI_1346
Fix reordering columns to the first position [SCI-1346]
This commit is contained in:
commit
d88de4009a
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ function dataTableInit() {
|
|||
scrollY: '64vh',
|
||||
scrollCollapse: true,
|
||||
colReorder: {
|
||||
fixedColumnsLeft: 2,
|
||||
fixedColumnsLeft: $('#assigned').text().length === 0 ? 1 : 2,
|
||||
realtime: false
|
||||
},
|
||||
destroy: true,
|
||||
|
|
Loading…
Reference in a new issue