From 5784694dc9d20cd2d0e2a47bb0d2d6e8a125c309 Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Fri, 9 Aug 2024 15:36:06 +0200 Subject: [PATCH] fix loading user data in app.vue (#15292) * fix handling user version * fix notification display --- website/client/src/app.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/client/src/app.vue b/website/client/src/app.vue index 010d552679..6e45a060a0 100644 --- a/website/client/src/app.vue +++ b/website/client/src/app.vue @@ -132,7 +132,8 @@ export default { }; }, computed: { - ...mapState(['isUserLoggedIn', 'isUserLoaded']), + ...mapState(['isUserLoggedIn', 'isUserLoaded', 'notificationsRemoved']), + ...mapState({ user: 'user.data' }), isStaticPage () { return this.$route.meta.requiresLogin === false; },