Fix for PreviewDoor

This commit is contained in:
Jörn-Michael Miehe 2023-11-09 18:03:10 +00:00
parent c2892f6358
commit f9111e7a45

View file

@ -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;
}