We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a219aa commit 2638240Copy full SHA for 2638240
artifacts/dx.all-v24.2-next.js
@@ -102136,10 +102136,8 @@ class MessageBox extends _dom_component.default {
102136
this._button.option('disabled', state);
102137
}
102138
_isValuableTextEntered() {
102139
- const {
102140
- text
102141
- } = this._textArea.option();
102142
- return !!(text !== null && text !== void 0 && text.trim());
+ const text = this._textArea.option('text') ?? '';
+ return !!text.trim();
102143
102144
_optionChanged(args) {
102145
const {
0 commit comments