From 173f17073618f7f8700a80e1cef49f4bc4715771 Mon Sep 17 00:00:00 2001 From: davelopez <46503462+davelopez@users.noreply.github.com> Date: Wed, 18 Dec 2024 18:33:45 +0100 Subject: [PATCH] Fix reactive reference for selection change warning dismissal --- .../CurrentHistory/HistoryOperations/SelectionChangeWarning.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/History/CurrentHistory/HistoryOperations/SelectionChangeWarning.vue b/client/src/components/History/CurrentHistory/HistoryOperations/SelectionChangeWarning.vue index cfb3c17149bb..3f1d7c8a468f 100644 --- a/client/src/components/History/CurrentHistory/HistoryOperations/SelectionChangeWarning.vue +++ b/client/src/components/History/CurrentHistory/HistoryOperations/SelectionChangeWarning.vue @@ -31,7 +31,7 @@ function onDoNotShowAgain() { watch( () => props.querySelectionBreak, () => { - dismissCountDown.value = showSelectionQueryBreakWarning ? dismissSecs.value : 0; + dismissCountDown.value = showSelectionQueryBreakWarning.value ? dismissSecs.value : 0; } );