Fixup all remaining ng-href usage in vue views

This commit is contained in:
Johannes Zellner
2025-02-16 15:59:07 +01:00
parent e6079ee275
commit dc98c2c1fe
7 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -233,7 +233,7 @@ onMounted(async () => {
<p class="text-muted">{{ $t('backups.backupDetails.list', { appCount: infoBackup.contents.length }) }}:</p>
<span v-for="content in infoBackup.contents" :key="content.id">
<a v-if="content.fqdn" ng-href="/#/app/{{content.id}}/backups">{{ content.label || content.fqdn }}</a>
<a v-if="content.fqdn" :href="`/#/app/${content.id}/backups`">{{ content.label || content.fqdn }}</a>
<a v-else :href="`/#/eventlog?search=${content.id}`">{{ content.id }}</a>
</span>
</Dialog>