ets-fe-ng-sdk 20.0.13 → 20.0.14

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.
@@ -3687,7 +3687,7 @@ class UtilityService {
3687
3687
  return [
3688
3688
  [ret.days, `day`],
3689
3689
  [ret.hours, 'hour'],
3690
- [ret.mins, 'mins'],
3690
+ [ret.mins, 'min'],
3691
3691
  ]
3692
3692
  .filter(([val], i) => !!val || i == 2)
3693
3693
  .map(([val, unit]) => `${val}${unit}${val == 1 ? '' : 's'}`)