From 373c1894a594b9ec509c305ac39e277dd84eb4d7 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 20 Feb 2024 11:48:44 -0600 Subject: [PATCH] refactor changes to use explicit bootstrap components etc Also, use imported icons instead of string icons for `FontAwesomeIcon`s --- .../History/CurrentHistory/HistoryCounter.vue | 9 +++ .../History/CurrentHistory/HistoryDetails.vue | 6 +- .../History/CurrentHistory/HistoryPanel.vue | 70 ++++++++----------- .../components/History/HistoryScrollList.vue | 56 +++++++++------ .../History/Layout/DetailsLayout.vue | 1 + .../History/Modals/SelectorModal.vue | 26 ++++--- .../History/Multiple/MultipleView.vue | 27 +++---- .../History/Multiple/MultipleViewList.vue | 6 +- .../src/components/Panels/MultiviewPanel.vue | 25 +++---- 9 files changed, 123 insertions(+), 103 deletions(-) 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 @@