From b4e3d21d628602c90428ee0506de18fe7f7bf445 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 26 Dec 2022 08:15:30 +0000 Subject: [PATCH] fix icon --- packages/client/src/navbar.ts | 2 +- packages/client/src/pages/follow-requests.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/client/src/navbar.ts b/packages/client/src/navbar.ts index 6b27b42cf..31e6cd64a 100644 --- a/packages/client/src/navbar.ts +++ b/packages/client/src/navbar.ts @@ -29,7 +29,7 @@ export const navbarItemDef = reactive({ }, followRequests: { title: 'followRequests', - icon: 'ti ti-user-clock', + icon: 'ti ti-user-plus', show: computed(() => $i != null && $i.isLocked), indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest), to: '/my/follow-requests', diff --git a/packages/client/src/pages/follow-requests.vue b/packages/client/src/pages/follow-requests.vue index 2bef35746..b20679ccc 100644 --- a/packages/client/src/pages/follow-requests.vue +++ b/packages/client/src/pages/follow-requests.vue @@ -67,7 +67,7 @@ const headerTabs = $computed(() => []); definePageMetadata(computed(() => ({ title: i18n.ts.followRequests, - icon: 'ti ti-user-clock', + icon: 'ti ti-user-plus', })));