This commit is contained in:
syuilo 2022-12-26 08:15:30 +00:00
parent 50e3839b60
commit b4e3d21d62
2 changed files with 2 additions and 2 deletions

View File

@ -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',

View File

@ -67,7 +67,7 @@ const headerTabs = $computed(() => []);
definePageMetadata(computed(() => ({
title: i18n.ts.followRequests,
icon: 'ti ti-user-clock',
icon: 'ti ti-user-plus',
})));
</script>