FIX: UMD does not allow self-closing tags
This commit is contained in:
parent
8d442b7c6f
commit
98f82beb28
1 changed files with 12 additions and 12 deletions
|
|
@ -13,7 +13,7 @@
|
|||
<!-- Loading State -->
|
||||
<q-card v-if="loading || !registrationChecked">
|
||||
<q-card-section class="text-center">
|
||||
<q-spinner size="2em" />
|
||||
<q-spinner size="2em"></q-spinner>
|
||||
<div class="q-mt-md">Loading your DCA dashboard...</div>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
|
|
@ -123,10 +123,10 @@
|
|||
</div>
|
||||
<div v-if="dashboardData.current_fiat_balance > 0 && dashboardData.dca_status === 'active'" class="q-mt-xs column items-center">
|
||||
<div>
|
||||
<q-spinner-hearts
|
||||
color="orange-7"
|
||||
<q-spinner-hearts
|
||||
color="orange-7"
|
||||
size="2.5em"
|
||||
/>
|
||||
></q-spinner-hearts>
|
||||
</div>
|
||||
<q-badge
|
||||
color="orange-7"
|
||||
|
|
@ -334,7 +334,7 @@
|
|||
size="sm"
|
||||
flat
|
||||
:disable="chartLoading"
|
||||
/>
|
||||
></q-btn-toggle>
|
||||
</div>
|
||||
</div>
|
||||
</q-card-section>
|
||||
|
|
@ -421,10 +421,10 @@
|
|||
|
||||
<template v-slot:body-cell-type="props">
|
||||
<q-td :props="props" class="text-center">
|
||||
<q-badge
|
||||
<q-badge
|
||||
:color="props.row.transaction_type === 'flow' ? 'blue' : 'purple'"
|
||||
:label="props.row.transaction_type.toUpperCase()"
|
||||
/>
|
||||
></q-badge>
|
||||
</q-td>
|
||||
</template>
|
||||
|
||||
|
|
@ -468,16 +468,16 @@
|
|||
Quick Actions
|
||||
</h6>
|
||||
<div class="q-gutter-sm">
|
||||
<q-btn
|
||||
outline
|
||||
color="orange"
|
||||
icon="refresh"
|
||||
<q-btn
|
||||
outline
|
||||
color="orange"
|
||||
icon="refresh"
|
||||
label="Refresh Data"
|
||||
@click="refreshAllData()"
|
||||
:loading="loading"
|
||||
class="full-width"
|
||||
size="md"
|
||||
/>
|
||||
></q-btn>
|
||||
<q-btn
|
||||
outline
|
||||
color="blue"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue