Commit 0c453811 authored by Stan Hu's avatar Stan Hu

Merge branch '4586-fix-shard-storage-null-check' into 'master'

Fix shard storage config status null check

Closes #4586

See merge request gitlab-org/gitlab-ee!4054
parents b3a3ae67 5d5ed5cb
......@@ -139,7 +139,7 @@
return this.nodeDetails.healthy ? this.nodeDetails.health : this.nodeDetails.healthStatus;
},
storageShardsStatus() {
if (this.nodeDetails.storageShardsMatch === null) {
if (this.nodeDetails.storageShardsMatch == null) {
return __('Unknown');
}
return this.nodeDetails.storageShardsMatch ? __('OK') : s__('GeoNodes|Does not match the primary storage configuration');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment