Skip to content

Commit

Permalink
fixed display bug on stats page
Browse files Browse the repository at this point in the history
  • Loading branch information
jabelone committed Jul 13, 2024
1 parent ddc86c3 commit 12b4141
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-frontend/src/pages/Stats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{{ $t('stats.disabled') }}
</q-banner>

<div v-if="StatisticsLoaded">
<template v-if="StatisticsLoaded">
<template v-for="(value, key) in this.statistics" :key="key">
<div v-if="key !== 'on_site'" class="col-lg-6 col-12 q-px-md q-pt-md">
<q-card class="full-width">
Expand All @@ -39,7 +39,7 @@
</q-card>
</div>
</template>
</div>
</template>
<div v-else>
{{ $t('stats.errorLoading') }}
</div>
Expand Down

0 comments on commit 12b4141

Please sign in to comment.