From b279a04b4380b864186f3b5a1c20a21f6763bd56 Mon Sep 17 00:00:00 2001 From: Tim Chamberlain Date: Wed, 16 Apr 2025 16:45:46 -0500 Subject: [PATCH] quick bug fix for goto fields --- src/qqq/components/misc/GotoRecordDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qqq/components/misc/GotoRecordDialog.tsx b/src/qqq/components/misc/GotoRecordDialog.tsx index f11a558..343fb33 100644 --- a/src/qqq/components/misc/GotoRecordDialog.tsx +++ b/src/qqq/components/misc/GotoRecordDialog.tsx @@ -207,7 +207,7 @@ function GotoRecordDialog(props: Props): JSX.Element const queryStringParts: string[] = []; options[optionIndex].forEach((field) => { - if (field.type == QFieldType.STRING && !values[field.name][0]) + if (field.type == QFieldType.STRING && !values[field.name]) { return; }