From 9698cb6e34555bc78e09a6b8ee31c796737e57ba Mon Sep 17 00:00:00 2001 From: bach Date: Mon, 2 Oct 2023 11:57:17 +0200 Subject: [PATCH] bugfix --- src/components/ConcernementMapItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ConcernementMapItem.vue b/src/components/ConcernementMapItem.vue index e3769be..0689f37 100644 --- a/src/components/ConcernementMapItem.vue +++ b/src/components/ConcernementMapItem.vue @@ -200,7 +200,7 @@ export default { handler (n, o){ // check for active_revision changes // do not trigger on first variable filling (if o is null) - if(this.is_open && o && o.active_revision && n.active_revision){ + if(this.is_open && o && o.active_revision && n.active_revision && this.map_mode === "terraindevie"){ // be aware that here o & n active_revision are already the same :( !? console.log(`concernementMapItem watch concernement o.active_revision:${o.active_revision}, n.active_revision:${n.active_revision}`); this.resetPaperActiveRevision();