fix text field

This commit is contained in:
Yuri Kuznetsov
2024-01-04 14:29:44 +02:00
parent 2080ade438
commit ca924f9abc
+1 -1
View File
@@ -187,7 +187,7 @@ class TextFieldView extends BaseFieldView {
/** @type {HTMLTextAreaElement} */
const element = this.$element.get(0);
if (!element) {
if (!element || element.value === undefined) {
return;
}