Skip to content

Commit

Permalink
Merge pull request #19348 from davelopez/24.0_fix_selection_break_war…
Browse files Browse the repository at this point in the history
…ning_reappearing

[24.0] Fix selection break warning reappearing after page refresh
  • Loading branch information
dannon authored Dec 18, 2024
2 parents 9e725e8 + 173f170 commit 54de5b8
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 54de5b8

Please sign in to comment.