@tilde-nlp/ngx-translate 9.1.52 → 9.1.53

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.
@@ -8733,7 +8733,7 @@ class TextareaWithBackgroundComponent {
8733
8733
  }
8734
8734
  get hasOverflow() {
8735
8735
  const textarea = document.querySelector('textarea');
8736
- const textareaOverflow = textarea.scrollHeight > textarea.clientHeight;
8736
+ const textareaOverflow = textarea?.scrollHeight > textarea?.clientHeight;
8737
8737
  return textareaOverflow;
8738
8738
  }
8739
8739
  clearButtonAriaCode = "CLEAR_SOURCE";