mirror of https://github.com/rancher/dashboard.git
Fix issue where feature flag state is not shown correctly
This commit is contained in:
parent
b8a9bc92bc
commit
fc35f85bec
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue