don't edit stack title when dragging
Signed-off-by: Simon Hötten <s+git@hoetten.org>
This commit is contained in:
committed by
Julius Härtl
parent
0ae73b57d5
commit
467a3a454e
@@ -53,9 +53,11 @@
|
||||
<Container lock-axix="y"
|
||||
orientation="horizontal"
|
||||
:drag-handle-selector="dragHandleSelector"
|
||||
@drag-start="draggingStack = true"
|
||||
@drag-end="draggingStack = false"
|
||||
@drop="onDropStack">
|
||||
<Draggable v-for="stack in stacksByBoard" :key="stack.id">
|
||||
<Stack :stack="stack" />
|
||||
<Stack :stack="stack" :dragging="draggingStack" />
|
||||
</Draggable>
|
||||
</Container>
|
||||
</div>
|
||||
@@ -100,6 +102,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
draggingStack: false,
|
||||
loading: true,
|
||||
newStackTitle: '',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user