diff --git a/client/src/components/History/CurrentHistory/HistoryCounter.vue b/client/src/components/History/CurrentHistory/HistoryCounter.vue index e44b174a8433..c70ec3a91e6b 100644 --- a/client/src/components/History/CurrentHistory/HistoryCounter.vue +++ b/client/src/components/History/CurrentHistory/HistoryCounter.vue @@ -28,12 +28,14 @@ const props = withDefaults( lastChecked: Date; filterText?: string; showControls?: boolean; + hideReload?: boolean; }>(), { isWatching: false, lastChecked: () => new Date(), filterText: "", showControls: false, + hideReload: false, } ); @@ -191,6 +193,7 @@ onMounted(() => { { + + diff --git a/client/src/components/History/CurrentHistory/HistoryDetails.vue b/client/src/components/History/CurrentHistory/HistoryDetails.vue index d125b74850d2..52619647dd25 100644 --- a/client/src/components/History/CurrentHistory/HistoryDetails.vue +++ b/client/src/components/History/CurrentHistory/HistoryDetails.vue @@ -1,4 +1,6 @@