Fix issue where feature flag state is not shown correctly

This commit is contained in:
Neil MacDougall 2021-02-24 09:21:19 +00:00
parent b8a9bc92bc
commit fc35f85bec
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ export default {
},
enabled() {
return this.spec.value || this.status.default;
return (this.spec.value !== null) ? this.spec.value : this.status.default;
},
restartRequired() {