@flywheel-io/vision 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -348,7 +348,7 @@ class FwBadgeComponent {
348
348
  show = !(this.value.length === 0);
349
349
  }
350
350
  if (this.hideZero) {
351
- show = !(this.value || this.value === '0');
351
+ show = !(this.value && this.value === '0' || (this.hideEmpty && this.value.length === 0));
352
352
  }
353
353
  return show;
354
354
  }