Skip to content

Commit

Permalink
Always use bottom navigaton
Browse files Browse the repository at this point in the history
  • Loading branch information
pail23 committed Jun 9, 2024
1 parent ffabbd2 commit faaf82b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
11 changes: 0 additions & 11 deletions src/layouts/default/DrawerNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,17 +75,6 @@ watch(
</script>

<script lang="ts">
export const backButtonAllowedRouteNames = [
'track',
'artist',
'album',
'playlist',
'radio',
'addprovider',
'editprovider',
'editplayer',
'editcore',
];
export interface MenuItem {
label: string;
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/default/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<BottomNavigation v-if="getBreakpointValue({ breakpoint: 'bp3', condition: 'lt' })" :height="bottomNavHeight" />
<BottomNavigation :height="bottomNavHeight" />
</template>

<script setup lang="ts">
Expand Down
1 change: 0 additions & 1 deletion src/layouts/default/MainView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<template>
<v-main id="cont" class="overflow-y-auto" style="height: 0px">
<drawer-navigation />
<router-view v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />
Expand Down

0 comments on commit faaf82b

Please sign in to comment.