From 7d79fae84d50eed34b4eaa8e3a52fe2ace18caa5 Mon Sep 17 00:00:00 2001 From: Syngnat <92659908+Syngnat@users.noreply.github.com> Date: Wed, 8 Jul 2026 10:43:02 +0800 Subject: [PATCH] fix(query-editor): use literal label for 100-row option --- frontend/src/components/QueryEditorToolbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/QueryEditorToolbar.tsx b/frontend/src/components/QueryEditorToolbar.tsx index 311eda99..3d89bb5f 100644 --- a/frontend/src/components/QueryEditorToolbar.tsx +++ b/frontend/src/components/QueryEditorToolbar.tsx @@ -291,7 +291,7 @@ const QueryEditorToolbar: React.FC = ({ value={maxRows} onChange={(val) => onMaxRowsChange(Number(val))} options={[ - { label: t("query_editor.max_rows.option_100"), value: 100 }, + { label: '100', value: 100 }, { label: t("query_editor.max_rows.option_500"), value: 500 }, { label: t("query_editor.max_rows.option_1000"), value: 1000 }, { label: t("query_editor.max_rows.option_5000"), value: 5000 },