Use text-warning when showing warning below input elements

This commit is contained in:
Girish Ramakrishnan
2025-10-06 11:09:12 +02:00
parent 758daee0c9
commit ca96e40397
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ onMounted(async () => {
<label>{{ $t('app.archive.title') }}</label>
<div v-html="$t('app.archive.description')"></div>
<p class="text-bold text-success" v-if="latestBackup" v-html="$t('app.archive.latestBackupInfo', { date: prettyLongDate(latestBackup.creationTime) })"></p>
<p class="text-bold text-warning" v-else v-html="$t('app.archive.noBackup')"></p>
<p class="text-warning" v-else v-html="$t('app.archive.noBackup')"></p>
<Button :disabled="!latestBackup" @click="onArchive()">{{ $t('app.archive.action') }}</Button>
</div>