Skip to content

Commit

Permalink
feat: Display blank content when tasks loading - MEED-2803 - Meeds-io…
Browse files Browse the repository at this point in the history
…/MIPs#81 (#296)

fix feedback

(cherry picked from commit 5eaa3a2)
(cherry picked from commit 16f1a39)
  • Loading branch information
SaraBoutej authored and exo-swf committed Nov 14, 2023
1 parent 72ab3fc commit 36b721a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions webapps/src/main/webapp/vue-app/tasks/components/TasksApp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,12 @@
@removeTask="removeTask" />
</div>
</div>
<div v-else>
<task-empty-row @open-task-drawer="openTaskDrawer" />
</div>
<v-card
v-else
min-height="188"
flat>
<task-empty-row v-if="!loadingTasks" @open-task-drawer="openTaskDrawer" />
</v-card>
</widget-wrapper>
<task-drawer
ref="taskDrawer"
Expand Down

0 comments on commit 36b721a

Please sign in to comment.