diff --git a/client/src/components/History/CurrentHistory/HistoryNavigation.vue b/client/src/components/History/CurrentHistory/HistoryNavigation.vue index 1dd671f0e6a0..7420c8f2e53c 100644 --- a/client/src/components/History/CurrentHistory/HistoryNavigation.vue +++ b/client/src/components/History/CurrentHistory/HistoryNavigation.vue @@ -62,13 +62,13 @@ library.add( interface Props { histories: HistorySummary[]; history: HistorySummary; - title?: string; historiesLoading?: boolean; + minimal?: boolean; } const props = withDefaults(defineProps(), { - title: "Histories", historiesLoading: false, + minimal: false, }); const showSwitchModal = ref(false); @@ -115,11 +115,14 @@ function userTitle(title: string) {