Commit 2cb4231d authored by Phil Hughes's avatar Phil Hughes

Fixed issue with sortable not working after deleting list

parent ede50332
...@@ -43,6 +43,8 @@ ...@@ -43,6 +43,8 @@
group: 'boards', group: 'boards',
animation: 150, animation: 150,
draggable: '.is-draggable', draggable: '.is-draggable',
handle: '.js-board-handle',
filter: '.board-delete',
forceFallback: true, forceFallback: true,
fallbackClass: 'is-dragging', fallbackClass: 'is-dragging',
ghostClass: 'is-ghost', ghostClass: 'is-ghost',
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
.board{ ":class" => "{ 'is-draggable': !isPreset }" } .board{ ":class" => "{ 'is-draggable': !isPreset }" }
.board-inner .board-inner
%header.board-inner-container.board-header{ ":class" => "{ 'has-border': board.label }", ":style" => "{ borderTopColor: board.label.color }" } %header.board-inner-container.board-header{ ":class" => "{ 'has-border': board.label }", ":style" => "{ borderTopColor: board.label.color }" }
%h3.board-title %h3.board-title.js-board-handle
{{ board.title }} {{ board.title }}
%span.pull-right{ "v-if" => "board.type !== 'blank'" } %span.pull-right{ "v-if" => "board.type !== 'blank'" }
{{ board.issues.length }} {{ board.issues.length }}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment