Skip to content

Commit 2638240

Browse files
Update dx.all-v24.2-next.js
1 parent 4a219aa commit 2638240

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

artifacts/dx.all-v24.2-next.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102136,10 +102136,8 @@ class MessageBox extends _dom_component.default {
102136102136
this._button.option('disabled', state);
102137102137
}
102138102138
_isValuableTextEntered() {
102139-
const {
102140-
text
102141-
} = this._textArea.option();
102142-
return !!(text !== null && text !== void 0 && text.trim());
102139+
const text = this._textArea.option('text') ?? '';
102140+
return !!text.trim();
102143102141
}
102144102142
_optionChanged(args) {
102145102143
const {

0 commit comments

Comments
 (0)