summaryrefslogtreecommitdiff
path: root/packages/frontend/src/pages/_error_.vue
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-06-21 15:31:32 +0100
committerdakkar <dakkar@thenautilus.net>2024-06-22 15:53:12 +0100
commit7d74cf62c3d1d0c483bf0c6e134a2b560fd6866e (patch)
tree7a9ef459c4980bb2798e738a698191687b02f050 /packages/frontend/src/pages/_error_.vue
parentreplaced ti-lock (diff)
downloadsharkey-7d74cf62c3d1d0c483bf0c6e134a2b560fd6866e.tar.gz
sharkey-7d74cf62c3d1d0c483bf0c6e134a2b560fd6866e.tar.bz2
sharkey-7d74cf62c3d1d0c483bf0c6e134a2b560fd6866e.zip
replaced ti-alert-triangle
Diffstat (limited to 'packages/frontend/src/pages/_error_.vue')
-rw-r--r--packages/frontend/src/pages/_error_.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/_error_.vue b/packages/frontend/src/pages/_error_.vue
index 6b1eff5bcb..dbc113a766 100644
--- a/packages/frontend/src/pages/_error_.vue
+++ b/packages/frontend/src/pages/_error_.vue
@@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<div v-show="loaded" :class="$style.root">
<img :src="serverErrorImageUrl" class="_ghost" :class="$style.img"/>
<div class="_gaps">
- <div><b><i class="ph-warning ph-bold ph-lg"></i> {{ i18n.ts.pageLoadError }}</b></div>
+ <div><b><i class="ti ti-alert-triangle"></i> {{ i18n.ts.pageLoadError }}</b></div>
<div v-if="meta && (version === meta.version)">{{ i18n.ts.pageLoadErrorDescription }}</div>
<div v-else-if="serverIsDead">{{ i18n.ts.serverIsDead }}</div>
<template v-else>
@@ -69,7 +69,7 @@ const headerTabs = computed(() => []);
definePageMetadata(() => ({
title: i18n.ts.error,
- icon: 'ph-warning ph-bold ph-lg',
+ icon: 'ti ti-alert-triangle',
}));
</script>