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

This commit is contained in:
Harald Bamberger
2026-07-06 15:32:41 +02:00
parent a06d7bbfec
commit db7f46a874
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -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, '') || '/'
+3
View File
@@ -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;
}
}
}
},