oasys-lib 2.27.1 → 2.27.2

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.
@@ -1547,7 +1547,7 @@ class TextInputComponent {
1547
1547
  if (prefaceContentText) {
1548
1548
  prefaceText = ' ' + prefaceContentText;
1549
1549
  }
1550
- const textValue = this.textValue().trim();
1550
+ const textValue = this.textValue()?.trim() || '';
1551
1551
  const telephoneToText = prefaceText + ' ' + textValue.split('').join(' ');
1552
1552
  return this.label() + telephoneToText;
1553
1553
  }