Skip to content

Commit

Permalink
fix: acessing inexistent property in frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
minenwerfer committed Feb 28, 2024
1 parent 19a9dd7 commit 58ec6fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/pages/_dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ const metaStore = useStore('meta')
<aeria-icon
v-clickable
:icon="
metaStore.$theme === 'dark'
metaStore.theme === 'dark'
? 'moon'
: 'sun'
"
@click="metaStore.$theme === 'dark'
@click="metaStore.theme === 'dark'
? metaStore.$actions.saveTheme('default')
: metaStore.$actions.saveTheme('dark')
"
Expand Down

0 comments on commit 58ec6fd

Please sign in to comment.