diff --git a/contentcuration/contentcuration/frontend/shared/views/MainNavigationDrawer.vue b/contentcuration/contentcuration/frontend/shared/views/MainNavigationDrawer.vue index c5065c49ac..c5f671fd73 100644 --- a/contentcuration/contentcuration/frontend/shared/views/MainNavigationDrawer.vue +++ b/contentcuration/contentcuration/frontend/shared/views/MainNavigationDrawer.vue @@ -17,7 +17,7 @@ - + home @@ -25,7 +25,7 @@ {{ $tr('channelsLink') }} - + people @@ -34,7 +34,7 @@ - + settings @@ -42,7 +42,7 @@ {{ $tr('settingsLink') }} - + language @@ -50,7 +50,10 @@ - + open_in_new @@ -58,7 +61,7 @@ {{ $tr('helpLink') }} - + exit_to_app @@ -73,12 +76,14 @@ :text="$tr('copyright', { year: new Date().getFullYear() })" href="https://learningequality.org/" target="_blank" + :tabindex="handleclickTab" />

@@ -130,6 +135,13 @@ set(value) { this.$emit('input', value); }, + handleclickTab(){ + if(this.value){ + return 0; + }else{ + return -1; + } + } }, channelsLink() { return window.Urls.channels();