Skip to content
Snippets Groups Projects
Commit 72a3a2ad authored by Jonathan Weth's avatar Jonathan Weth :keyboard: Committed by magicfelix
Browse files

Fix loading bar in SPA

parent 2385a348
No related branches found
No related tags found
1 merge request!1256Resolve "Loading bar does not disappear on person overview pages even though the query has finished"
Pipeline #134051 failed
......@@ -14,6 +14,7 @@ Fixed
* Progress page didn't work properly.
* About page failed to load for apps with an unknown licence.
* Loading bar didn't disappear on some pages after loading was finished.
`3.1`_ - 2022-05-30
-------------------
......
......@@ -71,7 +71,9 @@ export default {
// Show loader if iframe starts to change its content, even if the $route stays the same
this.$refs.contentIFrame.contentWindow.onpagehide = () => {
this.$root.contentLoading = true;
if (this.$root.isLegacyBaseTemplate) {
this.$root.contentLoading = true;
}
};
// Write title of iframe to SPA window
......
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