Skip to content

Commit

Permalink
Changed login check condition to match with changed token types in ap…
Browse files Browse the repository at this point in the history
…i-uilib (#247)

…i-uilib

## Изменения
<!-- Опишите здесь на языке, понятном каждому, изменения, сделанные в
исходном коде по пунктам. -->

## Детали реализации
<!-- Здесь можно описать технические детали по пунктам. -->

## Check-List
<!-- После сохранения у следующих полей появятся галочки, которые нужно
проставить мышкой -->
- [ ] Вы проверили свой код перед отправкой запроса?
- [ ] Вы написали тесты к реализованным функциям?
- [ ] Вы не забыли применить форматирование `black` и `isort` для
_Back-End_ или `Prettier` для _Front-End_?
  • Loading branch information
BatuevIO authored Sep 30, 2024
1 parent dadfa19 commit ad90bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down

0 comments on commit ad90bd3

Please sign in to comment.