add integrity check to system backups

This commit is contained in:
Girish Ramakrishnan
2026-02-15 14:59:27 +01:00
parent c7b321315c
commit adf884c2c4
3 changed files with 80 additions and 34 deletions
@@ -137,7 +137,7 @@ defineExpose({
<div class="info-row">
<div class="info-label">{{ $t('backups.backupDetails.lastIntegrityCheck') }}</div>
<div class="info-value">
<span v-if="backup.integrityCheckTaskId">{{ $t('backups.backupDetails.integrityInProgress') }}</span>
<span v-if="backup.integrityCheckTask?.active">{{ $t('backups.backupDetails.integrityInProgress') }}</span>
<span v-else-if="backup.lastIntegrityCheckTime">{{ prettyLongDate(backup.lastIntegrityCheckTime) }}</span>
<span v-else>{{ $t('backups.backupDetails.integrityNever') }}</span>
</div>