replaced ti-download

This commit is contained in:
dakkar 2024-06-21 12:32:48 +01:00
parent babe2f3fcf
commit 2258d84f08
16 changed files with 32 additions and 31 deletions

View file

@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div :class="$style.extInstallerIconWrapper">
<i v-if="data.type === 'plugin'" class="ph-plug ph-bold ph-lg"></i>
<i v-else-if="data.type === 'theme'" class="ph-palette ph-bold ph-lg"></i>
<i v-else class="ph-download ph-bold ph-lg"></i>
<i v-else class="ti ti-download"></i>
</div>
<h2 :class="$style.extInstallerTitle">{{ i18n.ts._externalResourceInstaller[`_${data.type}`].title }}</h2>
<div :class="$style.extInstallerNormDesc">{{ i18n.ts._externalResourceInstaller.checkVendorBeforeInstall }}</div>
@ -314,7 +314,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts._externalResourceInstaller.title,
icon: 'ph-download ph-bold ph-lg',
icon: 'ti ti-download',
}));
</script>