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:
Jeremy Wharton 2023-07-18 21:52:52 -05:00
parent 4cb85186b2
commit ca263c05bb

View File

@ -13,7 +13,8 @@
@click.stop="appStore.toggleNavigationDrawer()"
/>
<v-app-bar-title class="mx-1" :class="{ 'ml-4': !showNavDrawerButton }">
<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"
@ -26,6 +27,7 @@
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>