diff --git a/src/App.vue b/src/App.vue index f060725..32e08c5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,7 +4,7 @@ import TitleBar from "./components/titlebar-element.vue"; import BottomNavbar from "./components/bottom-navbar.vue"; import DateSelector from "./components/date-selector.vue"; import LoadingElement from "./components/loading-element.vue"; -import { loading, loadingProgress, theme } from "./store"; +import { loading, loadingProgress, loadingFailed, theme } from "./store"; import { computed, ref } from "vue"; const autoThemes = { true: "dark", false: "light" }; @@ -31,7 +31,11 @@ const isDataView = computed(() => { :class="theme == 'auto' ? `theme-${autoTheme}` : `theme-${theme}`" > - +
diff --git a/src/components/history-list.vue b/src/components/history-list.vue index 4fc074d..b97f0d7 100644 --- a/src/components/history-list.vue +++ b/src/components/history-list.vue @@ -1,5 +1,5 @@