@stemy/ngx-utils 19.8.8 → 19.8.9

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.
@@ -4414,7 +4414,8 @@ class StaticLanguageService {
4414
4414
  }
4415
4415
  interpolate(expr, params) {
4416
4416
  if (typeof expr === "string") {
4417
- return this.interpolateString(expr, params);
4417
+ // Force single spaces to be empty strings, for labeling in forms.
4418
+ return expr === " " ? "" : this.interpolateString(expr, params);
4418
4419
  }
4419
4420
  if (typeof expr === "function") {
4420
4421
  return expr(params);