mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-22 15:53:01 +00:00
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) {
|
public on_click(event: MouseEvent) {
|
||||||
if (event.target === null || !(event.target instanceof SVGRectElement)) {
|
if (event.target === null || !(event.target instanceof HTMLDivElement)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue