Skip to content

Commit

Permalink
Change Folder's content table loading style #133
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoWolf committed Oct 14, 2020
1 parent b357ad0 commit 6d8002b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions client/src/components/project/Grid.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
<template>
<div v-if="loading">
<q-spinner-facebook
class="absolute-center"
color="primary"
/>
</div>
<div v-else class="contents-wrapper">
<div class="contents-wrapper">
<q-toolbar class="bg-white text-dark q-pa-sm">
<q-toolbar-title class="text-bold"></q-toolbar-title>

Expand Down Expand Up @@ -51,6 +45,8 @@
:pagination.sync="pagination"
:rows-per-page-options="[0]"
:selected.sync="selectedChildren"
:loading="loading"
color="primary"
>
<template v-slot:body-cell-name="props">
<q-td>
Expand All @@ -71,6 +67,7 @@
</div>
</q-td>
</template>
<!-- Grid View Cards -->
<template v-slot:item="props">
<q-card
flat
Expand Down

0 comments on commit 6d8002b

Please sign in to comment.