Skip to content

Commit

Permalink
Remove Developer tab, add Help tab
Browse files Browse the repository at this point in the history
  • Loading branch information
TimCsaky authored and kamorel committed Apr 13, 2023
1 parent 3f535cf commit 1fc6b73
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
13 changes: 8 additions & 5 deletions frontend/src/components/layout/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const { getIsAuthenticated } = storeToRefs(useAuthStore());

<template>
<nav
v-if="getIsAuthenticated"
class="navigation-main"
>
<Toolbar>
Expand All @@ -22,15 +21,19 @@ const { getIsAuthenticated } = storeToRefs(useAuthStore());
Home
</router-link>
</li>
<li class="mr-2">
<li
v-if="getIsAuthenticated"
class="mr-2"
>
<router-link :to="{ name: RouteNames.LIST_BUCKETS }">
My Buckets
</router-link>
</li>
<li class="mr-2">
<router-link :to="{ name: RouteNames.DEVELOPER }">
Developer
</router-link>
<a
target="_blank"
href="https://github.com/bcgov/bcbox/wiki"
>Help</a>
</li>
</ol>
</template>
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ const { getConfig } = storeToRefs(useConfigStore());
style="height: 32px"
>
<p class="text-xl">
We continue to expand the features of BCBox. Stay tuned for documentation on our wiki.<br /><br />
We continue to expand the features of BCBox. Stay tuned for documentation on our <a
target="_blank"
href="https://github.com/bcgov/bcbox/wiki"
>wiki</a>.<br /><br />
</p>
</div>
<div class="flex justify-content-center mb-8 text-xl">
Expand Down

0 comments on commit 1fc6b73

Please sign in to comment.