fix(WhatsnewModal check)

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-12-10 17:55:45 +01:00
parent ae95b0f27b
commit a9f52e70ce
1 changed files with 1 additions and 1 deletions

View File

@ -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: {