@tuki-io/tuki-widgets 0.0.202 → 0.0.204

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.
@@ -877,7 +877,7 @@ class StatCardComponent {
877
877
  return Math.ceil(this.stats?.totalUpgraded / this.stats?.total * 100);
878
878
  }
879
879
  get pendingActivationPercentage() {
880
- return Math.ceil(this.stats?.pendingActivation / this.stats?.pendingActivation * 100);
880
+ return (Math.ceil(this.stats?.pendingActivation / this.stats?.pendingActivation * 100)) || 0;
881
881
  }
882
882
  }
883
883
  StatCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StatCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });