Fix bug where View pane isn't loaded when app is first opened

This commit is contained in:
Julian Stirling 2025-05-23 11:45:16 +01:00
parent 10379b97f8
commit 8318d9daad
2 changed files with 6 additions and 5 deletions

View file

@ -212,27 +212,27 @@ export default {
topTabs: function() { topTabs: function() {
let tabs = [ let tabs = [
{ {
id: "View", id: "view",
icon: "visibility", icon: "visibility",
component: viewContent component: viewContent
}, },
{ {
id: "Navigate", id: "navigate",
icon: "gamepad", icon: "gamepad",
component: navigateContent component: navigateContent
}, },
{ {
id: "Background Detect", id: "background detect",
icon: "background_replace", icon: "background_replace",
component: backgroundDetectContent component: backgroundDetectContent
}, },
{ {
id: "Slide Scan", id: "slide scan",
icon: "settings_overscan", icon: "settings_overscan",
component: slideScanContent component: slideScanContent
}, },
{ {
id: "Scan List", id: "scan list",
icon: "photo_library", icon: "photo_library",
component: ScanListContent component: ScanListContent
} }

View file

@ -103,6 +103,7 @@ export default {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 85%; font-size: 85%;
text-transform: capitalize;
} }
a:hover, a:hover,