Skip to content

Commit

Permalink
fix(PageFooter): fix ref condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rudnovd committed Apr 14, 2024
1 parent 6a7818b commit 3108374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PageFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const router = useRouter()
const needRefresh = inject('needRefresh', ref(false))
const isNewVersionNotificationActive = inject('isNewVersionNotificationActive', ref(false))
function activateNewVersionNotification() {
if (needRefresh) {
if (needRefresh.value) {
isNewVersionNotificationDisabled.value = false
isNewVersionNotificationActive.value = true
}
Expand Down

0 comments on commit 3108374

Please sign in to comment.