From 4a47b564e134fac6a4f5043eef74acaf39d09491 Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Sun, 13 Oct 2024 01:09:49 -0400 Subject: [PATCH] restore missing hasPendingReceivedFollowRequest in navbar --- packages/frontend/src/navbar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/navbar.ts b/packages/frontend/src/navbar.ts index 21ff61e49e..6b93ade9f1 100644 --- a/packages/frontend/src/navbar.ts +++ b/packages/frontend/src/navbar.ts @@ -40,7 +40,7 @@ export const navbarItemDef = reactive({ followRequests: { title: i18n.ts.followRequests, icon: 'ti ti-user-plus', - show: computed(() => $i != null && ($i.isLocked || $i.hasPendingSentFollowRequest)), + show: computed(() => $i != null && ($i.isLocked || $i.hasPendingReceivedFollowRequest || $i.hasPendingSentFollowRequest)), indicated: computed(() => $i != null && $i.hasPendingReceivedFollowRequest), to: '/my/follow-requests', },