web/satellite/vuetify-poc: go to all projects dashboard on logo click
This change navigates users to the all projects dashboard when the logo in the navigation bar has been clicked. Change-Id: Id63b616d12eea510b52f715f3003838541d2ab63
This commit is contained in:
parent
4cb85186b2
commit
ca263c05bb
@ -13,19 +13,21 @@
|
||||
@click.stop="appStore.toggleNavigationDrawer()"
|
||||
/>
|
||||
|
||||
<v-app-bar-title class="mx-1" :class="{ 'ml-4': !showNavDrawerButton }">
|
||||
<v-img
|
||||
v-if="theme.global.current.value.dark"
|
||||
src="@poc/assets/logo-dark.svg"
|
||||
width="120"
|
||||
alt="Storj Logo"
|
||||
/>
|
||||
<v-img
|
||||
v-else
|
||||
src="@poc/assets/logo.svg"
|
||||
width="120"
|
||||
alt="Storj Logo"
|
||||
/>
|
||||
<v-app-bar-title class="mx-1 flex-initial" :class="{ 'ml-4': !showNavDrawerButton }">
|
||||
<router-link to="/projects">
|
||||
<v-img
|
||||
v-if="theme.global.current.value.dark"
|
||||
src="@poc/assets/logo-dark.svg"
|
||||
width="120"
|
||||
alt="Storj Logo"
|
||||
/>
|
||||
<v-img
|
||||
v-else
|
||||
src="@poc/assets/logo.svg"
|
||||
width="120"
|
||||
alt="Storj Logo"
|
||||
/>
|
||||
</router-link>
|
||||
</v-app-bar-title>
|
||||
|
||||
<template #append>
|
||||
@ -184,3 +186,9 @@ watch(() => theme.global.current.value.dark, (newVal: boolean) => {
|
||||
toggleTheme(localStorage.getItem('theme') || 'light');
|
||||
activeTheme.value = theme.global.current.value.dark ? 1 : 0;
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.flex-initial {
|
||||
flex: initial;
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user