Fix for PreviewDoor
This commit is contained in:
parent
c2892f6358
commit
f9111e7a45
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ export default class extends Vue {
|
|||
}
|
||||
|
||||
public on_click(event: MouseEvent) {
|
||||
if (event.target === null || !(event.target instanceof SVGRectElement)) {
|
||||
if (event.target === null || !(event.target instanceof HTMLDivElement)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue