Skip to content

Commit

Permalink
Fix reactive reference for selection change warning dismissal
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Dec 18, 2024
1 parent 9e725e8 commit 173f170
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function onDoNotShowAgain() {
watch(
() => props.querySelectionBreak,
() => {
dismissCountDown.value = showSelectionQueryBreakWarning ? dismissSecs.value : 0;
dismissCountDown.value = showSelectionQueryBreakWarning.value ? dismissSecs.value : 0;
}
);
</script>
Expand Down

0 comments on commit 173f170

Please sign in to comment.