We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1db4aa1 commit f3c9ba3Copy full SHA for f3c9ba3
2 files changed
packages/devextreme/js/__internal/ui/popover/m_popover.ts
@@ -193,6 +193,7 @@ class Popover<
193
const { visible } = this.option();
194
195
const overlayStack = this._overlayStack();
196
+ // @ts-ignore this
197
const isTopOverlay = overlayStack[overlayStack.length - 1] === this;
198
199
if (normalizeKeyName(e) === ESC_KEY_NAME && visible && isTopOverlay) {
packages/devextreme/js/__internal/ui/text_box/m_text_editor.base.ts
@@ -678,8 +678,8 @@ class TextEditorBase<
678
}
679
680
const $input = this._input();
681
-
682
- const { placeholder } = this.option();
+ // There should be no destructuring, because of knockout limitations
+ const placeholder = this.option('placeholder');
683
684
const placeholderAttributes = {
685
id: placeholder ? `dx-${new Guid()}` : undefined,
0 commit comments