fix(WhatsnewModal): Only show for major or minor version bumps

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-12-10 16:41:06 +01:00
parent fdd4658ef2
commit e7b79f3502
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.slice(0,2).join('.')
},
},
methods: {