0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-22 11:15:14 +00:00

fix: 🐛 hotfix

Fix quick layout issue on about page
This commit is contained in:
Kenny 2022-04-06 12:09:59 -04:00
parent c92c914769
commit 19ca328a90

View file

@ -16,7 +16,10 @@
<!-- App Information -->
<v-card class="obj" :class="$vuetify.theme.dark ? 'background lighten-1' : 'background darken-1'" :style="{borderRadius: `${roundTweak / 2}rem`}">
<v-card-title>App Information</v-card-title>
<v-card-text>App Version: {{ version.substring(0, 7) }}</v-card-text>
<v-card-text>
<h3>App Version</h3>
{{ version.substring(0, 7) || "Unknown" }}
</v-card-text>
</v-card>
<!-- End App Information -->