Skip to content

Commit

Permalink
Merge pull request #4512 from nextcloud/bugfix/4511
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusknorr authored Mar 8, 2023
2 parents fc183f6 + e4acb37 commit cd3f658
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/board/Board.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@
@drag-start="draggingStack = true"
@drag-end="draggingStack = false"
@drop="onDropStack">
<Draggable v-for="stack in stacksByBoard" :key="stack.id" data-click-closes-sidebar="true">
<Draggable v-for="stack in stacksByBoard"
:key="stack.id"
data-click-closes-sidebar="true"
class="stack-draggable-wrapper">
<Stack :stack="stack" :dragging="draggingStack" data-click-closes-sidebar="true" />
</Draggable>
</Container>
Expand Down Expand Up @@ -223,7 +226,7 @@ export default {
align-items: stretch;
height: 100%;
&:deep(.smooth-dnd-draggable-wrapper) {
&:deep(.stack-draggable-wrapper.smooth-dnd-draggable-wrapper) {
display: flex;
height: auto;
Expand Down

0 comments on commit cd3f658

Please sign in to comment.