From f963b38339158ff5e10e96f689dbd5f12151d6ac Mon Sep 17 00:00:00 2001 From: Hein Date: Fri, 23 Jan 2026 11:11:12 +0200 Subject: [PATCH] =?UTF-8?q?fix(Gridler):=20=F0=9F=94=A7=20wrap=20filter=20?= =?UTF-8?q?value=20in=20parentheses?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx b/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx index 093ef42..7766844 100644 --- a/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx +++ b/src/Gridler/components/adaptors/GlidlerAPIAdaptorForGoLangv2.tsx @@ -230,7 +230,7 @@ function _GlidlerAPIAdaptorForGoLangv2(props: GlidlerAPIAdaptorForG ops.push({ name: 'sql_filter', type: 'custom-sql-w', - value: props.filter, + value: `(${props.filter})`, }); }