Skip to content

Commit 17231c0

Browse files
authored
Overlay: should not take visible prop by destructuring to support KO
1 parent 481662b commit 17231c0

File tree

1 file changed

+1
-1
lines changed
  • packages/devextreme/js/__internal/ui/overlay

1 file changed

+1
-1
lines changed

packages/devextreme/js/__internal/ui/overlay/overlay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ class Overlay<
13781378
}
13791379

13801380
_isVisible(): boolean {
1381-
const { visible } = this.option();
1381+
const visible = this.option('visible');
13821382

13831383
return Boolean(visible);
13841384
}

0 commit comments

Comments
 (0)