@indice/ng-components 0.2.173-beta.15 → 0.2.173-beta.17

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.
@@ -4004,7 +4004,7 @@ class ShortNumberPipe {
4004
4004
  for (let i = 0; i < powers.length; i++) {
4005
4005
  let reduced = abs / powers[i].value;
4006
4006
  reduced = Math.round(reduced * rounder) / rounder;
4007
- if (reduced >= 1) {
4007
+ if (reduced > 1) {
4008
4008
  abs = reduced;
4009
4009
  key = powers[i].key;
4010
4010
  break;