Skip to content
Snippets Groups Projects
Commit 2ead9fc3 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch '906-mini-aleksis-still-spawns-when-impersonation-is-ended' into 'master'

Resolve "Mini-AlekSIS still spawns when impersonation is ended"

Closes #906

See merge request !1383
parents 49be0051 27efe955
No related branches found
No related tags found
1 merge request!1383Resolve "Mini-AlekSIS still spawns when impersonation is ended"
Pipeline #163696 failed
......@@ -117,8 +117,11 @@ export default {
newRoute.path.charAt(path.length - 1) !== "/"
? newRoute.path + "/"
: newRoute.path;
if (path !== routePath) {
// If the current iFrame path does not start with the /django prefix – which should not be the case – add it
if (
path !== routePath ||
!this.getIFrameURL().pathname.startsWith("/django")
) {
this.$refs.contentIFrame.contentWindow.location =
"/django" + this.$route.path + this.queryString;
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment