Skip to content

Commit

Permalink
fixing issue #76 - when all items were marked as done - not all of th…
Browse files Browse the repository at this point in the history
…em was visible
  • Loading branch information
czytelny committed Jun 19, 2019
1 parent 4a47e38 commit 2594b77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/board/BoardContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
<h1>No results...</h1>
</div>

<div class="items-container" v-if="!isBoardItemsEmpty">
<div class="items-container" v-if="!isBoardItemsEmpty"
:style="isAllItemsDone? {height:'calc(100vh - 400px)'} : null">
<draggable :value="boardItems"
handle=".drag"
@change="boardItemsRearanged"
Expand Down

0 comments on commit 2594b77

Please sign in to comment.