Skip to content

Commit

Permalink
fix(WhatsnewModal check)
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Dec 10, 2023
1 parent ae95b0f commit a9f52e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/WhatsnewModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
},
computed: {
showModal() {
return this.$store.state.settings.hasSeenWhatsnew?.split('.').slice(0,2).join('.') !== packageJson.version.slice(0,2).join('.')
return this.$store.state.settings.hasSeenWhatsnew?.split('.').slice(0,2).join('.') !== packageJson.version.split('.').slice(0,2).join('.')
},
},
methods: {
Expand Down

0 comments on commit a9f52e7

Please sign in to comment.