quick bug fix for goto fields

This commit is contained in:
Tim Chamberlain
2025-04-16 16:45:46 -05:00
parent 1f2e57d688
commit b279a04b43

View File

@ -207,7 +207,7 @@ function GotoRecordDialog(props: Props): JSX.Element
const queryStringParts: string[] = []; const queryStringParts: string[] = [];
options[optionIndex].forEach((field) => options[optionIndex].forEach((field) =>
{ {
if (field.type == QFieldType.STRING && !values[field.name][0]) if (field.type == QFieldType.STRING && !values[field.name])
{ {
return; return;
} }