feat: Display notification count in sidebar inbox item (#12324)

This commit is contained in:
Sivin Varghese
2025-09-01 15:55:09 +05:30
committed by GitHub
parent c53e750be0
commit d68ac25187
4 changed files with 26 additions and 11 deletions

View File

@@ -38,4 +38,7 @@ export const getters = {
getHasUnreadNotifications: $state => {
return $state.meta.unreadCount > 0;
},
getUnreadCount: $state => {
return $state.meta.unreadCount;
},
};