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 -->
|
<!-- Loading State -->
|
||||||
<q-card v-if="loading || !registrationChecked">
|
<q-card v-if="loading || !registrationChecked">
|
||||||
<q-card-section class="text-center">
|
<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>
|
<div class="q-mt-md">Loading your DCA dashboard...</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
</q-card>
|
</q-card>
|
||||||
|
|
@ -123,10 +123,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div v-if="dashboardData.current_fiat_balance > 0 && dashboardData.dca_status === 'active'" class="q-mt-xs column items-center">
|
<div v-if="dashboardData.current_fiat_balance > 0 && dashboardData.dca_status === 'active'" class="q-mt-xs column items-center">
|
||||||
<div>
|
<div>
|
||||||
<q-spinner-hearts
|
<q-spinner-hearts
|
||||||
color="orange-7"
|
color="orange-7"
|
||||||
size="2.5em"
|
size="2.5em"
|
||||||
/>
|
></q-spinner-hearts>
|
||||||
</div>
|
</div>
|
||||||
<q-badge
|
<q-badge
|
||||||
color="orange-7"
|
color="orange-7"
|
||||||
|
|
@ -334,7 +334,7 @@
|
||||||
size="sm"
|
size="sm"
|
||||||
flat
|
flat
|
||||||
:disable="chartLoading"
|
:disable="chartLoading"
|
||||||
/>
|
></q-btn-toggle>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
@ -421,10 +421,10 @@
|
||||||
|
|
||||||
<template v-slot:body-cell-type="props">
|
<template v-slot:body-cell-type="props">
|
||||||
<q-td :props="props" class="text-center">
|
<q-td :props="props" class="text-center">
|
||||||
<q-badge
|
<q-badge
|
||||||
:color="props.row.transaction_type === 'flow' ? 'blue' : 'purple'"
|
:color="props.row.transaction_type === 'flow' ? 'blue' : 'purple'"
|
||||||
:label="props.row.transaction_type.toUpperCase()"
|
:label="props.row.transaction_type.toUpperCase()"
|
||||||
/>
|
></q-badge>
|
||||||
</q-td>
|
</q-td>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -468,16 +468,16 @@
|
||||||
Quick Actions
|
Quick Actions
|
||||||
</h6>
|
</h6>
|
||||||
<div class="q-gutter-sm">
|
<div class="q-gutter-sm">
|
||||||
<q-btn
|
<q-btn
|
||||||
outline
|
outline
|
||||||
color="orange"
|
color="orange"
|
||||||
icon="refresh"
|
icon="refresh"
|
||||||
label="Refresh Data"
|
label="Refresh Data"
|
||||||
@click="refreshAllData()"
|
@click="refreshAllData()"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
class="full-width"
|
class="full-width"
|
||||||
size="md"
|
size="md"
|
||||||
/>
|
></q-btn>
|
||||||
<q-btn
|
<q-btn
|
||||||
outline
|
outline
|
||||||
color="blue"
|
color="blue"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue