fix: dashboard invalid version on load
This commit is contained in:
@@ -135,7 +135,11 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
isLatestVersion() {
|
||||
return semverLte(this.info.latestVersion, this.info.currentVersion)
|
||||
if (this.info.latestVersion === 'n/a' || this.info.currentVersion === 'n/a') {
|
||||
return true
|
||||
} else {
|
||||
return semverLte(this.info.latestVersion, this.info.currentVersion)
|
||||
}
|
||||
},
|
||||
info: get('admin/info'),
|
||||
permissions: get('user/permissions')
|
||||
|
Reference in New Issue
Block a user