From 3f316e18e7bc2ffd76c7a8dd68b79a280075b80d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Fri, 29 Sep 2023 18:37:25 +0200 Subject: [PATCH] Display the nav bar on every view except first account creation --- CHANGELOG.md | 1 + src/views/AboutView.vue | 2 ++ src/views/AddAccountView.vue | 2 ++ src/views/ConfigView.vue | 2 ++ src/views/DeleteAccountView.vue | 2 ++ src/views/ManageAccountsView.vue | 2 ++ 6 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d513d12..5f44704 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - If the browser uses a dark theme, the default theme is also set to dark +- Display the navigation bar on every view, except the creation of the first account ### Fixed - The account deletion view is now emphasized the same way it was before diff --git a/src/views/AboutView.vue b/src/views/AboutView.vue index 1ca27e2..827e386 100644 --- a/src/views/AboutView.vue +++ b/src/views/AboutView.vue @@ -4,6 +4,7 @@ import { version } from '../../package.json'; import ButtonGroupComponent from '../components/ButtonGroupComponent.vue'; import LayoutComponent from '../components/LayoutComponent.vue'; import ExternalLinkComponent from '../components/ExternalLinkComponent.vue'; +import NavBarComponent from '../components/NavBarComponent.vue'; const router = useRouter(); const repoUrl = 'https://git.what.tf/rodolphe/sake-app'; @@ -14,6 +15,7 @@ const toMainView = () => {