Skip to content
Snippets Groups Projects
Commit 393043e3 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Merge branch 'release-3.0' into...

Merge branch 'release-3.0' into 838-offline-fallback-page-for-django-legacy-pages-is-misleading-in-some-situations
parents 99d78f53 f95d975a
No related branches found
No related tags found
3 merge requests!1237Release 3.0,!1215Resolve "Offline fallback page for django legacy pages is misleading in some situations",!1183Release 3.0
Pipeline #122267 failed
......@@ -30,6 +30,7 @@ Fixed
* App switched to offline state when the user was logged out/in.
* The `Stop Impersonation` button is not shown due to an oversee when changing the type of the whoAmI query to an object of UserType
* Offline fallback page for legacy pages was misleading sometimes.
* Route changes in the Legacy-Component iframe didn't trigger a scroll to the top
`3.0b3`_ - 2023-03-19
---------------------
......
......@@ -103,6 +103,10 @@ export default {
$route() {
// Show loading animation once route changes
this.$root.contentLoading = true;
// Scroll to top only when route changes to not affect form submits etc.
// A small duration to avoid flashing of the UI
this.$vuetify.goTo(0, { duration: 10 });
},
},
name: "LegacyBaseTemplate",
......
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