Skip to content

Commit bfac410

Browse files
authored
Overlay: should not take visible prop by destructuring to support KO (#30612)
1 parent 4a59d28 commit bfac410

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
@@ -1379,7 +1379,7 @@ class Overlay<
13791379
}
13801380

13811381
_isVisible(): boolean {
1382-
const { visible } = this.option();
1382+
const visible = this.option('visible');
13831383

13841384
return Boolean(visible);
13851385
}

0 commit comments

Comments
 (0)