[web] Fix a bug preventing the options to be correctly hidden on the composer pages.

Now, when using the chevron (up and down), the option menu is revealed or hidden properly.
This commit is contained in:
Alain Nussbaumer 2023-06-23 22:26:09 +02:00
parent 82db8141ea
commit 0e0eb474eb
1 changed files with 2 additions and 2 deletions

View File

@ -139,13 +139,13 @@ export const router = createRouter({
path: '/music/composers/:composer/albums',
name: 'ComposerAlbums',
component: PageComposer,
meta: { show_progress: true, has_tabs: true, has_index: true }
meta: { show_progress: true, has_index: true }
},
{
path: '/music/composers/:composer/tracks',
name: 'ComposerTracks',
component: PageComposerTracks,
meta: { show_progress: true, has_tabs: true, has_index: true }
meta: { show_progress: true, has_index: true }
},
{
path: '/podcasts',