From db7f46a874968d01e60c3dc65a059e207e985612 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Mon, 6 Jul 2026 15:32:41 +0200 Subject: [PATCH] Cis App: consider search string in document click handler, Compat component: set iframe href if identical to origin href to force reload of iframe content --- public/js/apps/Cis/Cis.js | 2 +- public/js/components/Cis/Compat.js | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/public/js/apps/Cis/Cis.js b/public/js/apps/Cis/Cis.js index 4e15701fc..50acd4908 100644 --- a/public/js/apps/Cis/Cis.js +++ b/public/js/apps/Cis/Cis.js @@ -37,7 +37,7 @@ const app = Vue.createApp({ if (target && this.isInternalRoute(target.href)) { const url = new URL(target.href) - const path = url.pathname + const path = url.pathname + url.search; const base = this.$router.options.history.base const route = path.replace(base, '') || '/' diff --git a/public/js/components/Cis/Compat.js b/public/js/components/Cis/Compat.js index 7879bdda2..e6fb653f7 100644 --- a/public/js/components/Cis/Compat.js +++ b/public/js/components/Cis/Compat.js @@ -30,6 +30,9 @@ export default { let url = this.buildSrcUrl(); if(this.lastLoadediFrameURL !== url) { this.srcUrl = url; + if(this.srcUrl === url) { + this.$refs.compatiframe.contentWindow.location.href = url; + } } } },