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;
     }
 );
 </script>