summaryrefslogtreecommitdiffstats
path: root/apps/dashboard/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dashboard/src/App.vue')
-rw-r--r--apps/dashboard/src/App.vue5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue
index ea35e32d57c..ef7e770f0d6 100644
--- a/apps/dashboard/src/App.vue
+++ b/apps/dashboard/src/App.vue
@@ -215,6 +215,7 @@ export default {
},
mounted() {
this.updateGlobalStyles()
+ this.updateSkipLink()
window.addEventListener('scroll', this.handleScroll)
setInterval(() => {
@@ -321,6 +322,10 @@ export default {
document.body.classList.remove('dashboard--dark')
}
},
+ updateSkipLink() {
+ // Make sure "Skip to main content" link points to the app content
+ document.getElementsByClassName('skip-navigation')[0].setAttribute('href', '#app-dashboard')
+ },
updateStatusCheckbox(app, checked) {
if (checked) {
this.enableStatus(app)