From 0cedf6f9809d82e5dd5c2a54e080f692b771def9 Mon Sep 17 00:00:00 2001 From: David Callizaya Date: Fri, 2 Feb 2024 14:03:01 -0400 Subject: [PATCH] Fix value update in pmql when changing of control in SB --- resources/js/components/shared/PmqlInput.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/components/shared/PmqlInput.vue b/resources/js/components/shared/PmqlInput.vue index 82771752c6..27da5985c6 100755 --- a/resources/js/components/shared/PmqlInput.vue +++ b/resources/js/components/shared/PmqlInput.vue @@ -260,8 +260,8 @@ export default { this.calcInputHeight(); }, value() { - if (!this.query || this.query === "") { - this.query = this.value; + if (this.query !== this.value) { + this.query = this.value || ""; } }, },