1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix dashboard tab links

This commit is contained in:
Bill Thornton 2020-12-03 16:13:27 -05:00
parent 9155899860
commit f9ee9aeeb3
9 changed files with 29 additions and 29 deletions

View file

@ -9,16 +9,16 @@ import Dashboard from '../../scripts/clientUtils';
function getTabs() {
return [{
href: 'library.html',
href: '#!/library.html',
name: globalize.translate('HeaderLibraries')
}, {
href: 'librarydisplay.html',
href: '#!/librarydisplay.html',
name: globalize.translate('Display')
}, {
href: 'metadataimages.html',
href: '#!/metadataimages.html',
name: globalize.translate('Metadata')
}, {
href: 'metadatanfo.html',
href: '#!/metadatanfo.html',
name: globalize.translate('TabNfoSettings')
}];
}