mirror of
https://github.com/wekan/wekan.git
synced 2026-03-09 15:12:34 +01:00
Made possible to start WeKan immediately without running any database migrations.
Thanks to xet7 !
This commit is contained in:
parent
688b725807
commit
3ccdc2e307
5 changed files with 198 additions and 11 deletions
|
|
@ -104,8 +104,8 @@ function initSortable(boardComponent, $listsDom) {
|
|||
}
|
||||
}
|
||||
|
||||
// Get the original swimlane ID of the list
|
||||
const originalSwimlaneId = list.swimlaneId;
|
||||
// Get the original swimlane ID of the list (handle backward compatibility)
|
||||
const originalSwimlaneId = list.getEffectiveSwimlaneId ? list.getEffectiveSwimlaneId() : (list.swimlaneId || null);
|
||||
|
||||
/*
|
||||
Reverted incomplete change list width,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue