From ad90bd327bb935373dd180515072bca3e51909c7 Mon Sep 17 00:00:00 2001 From: Ilya Date: Tue, 1 Oct 2024 01:04:09 +0300 Subject: [PATCH] Changed login check condition to match with changed token types in api-uilib (#247) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …i-uilib ## Изменения ## Детали реализации ## Check-List - [ ] Вы проверили свой код перед отправкой запроса? - [ ] Вы написали тесты к реализованным функциям? - [ ] Вы не забыли применить форматирование `black` и `isort` для _Back-End_ или `Prettier` для _Front-End_? --- src/store/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/profile.ts b/src/store/profile.ts index 3a69f8f6..372b54c1 100644 --- a/src/store/profile.ts +++ b/src/store/profile.ts @@ -73,7 +73,7 @@ export const useProfileStore = defineStore('profile', () => { } } - const isUserLogged = computed(() => token.value !== null); + const isUserLogged = computed(() => !!token.value); const isAdmin = computed(() => tokenScopes.value?.includes(scopename.webapp.admin.show));