Skip to content

Commit 84b6cc1

Browse files
committed
Fix parallel run entry
1 parent 467c82a commit 84b6cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llmstack/client/src/components/sheets/SheetColumnMenu.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ export function SheetColumnMenu({
467467
label="Parallel Runs"
468468
value={formulaData.max_parallel_runs || 1}
469469
onChange={(e) => {
470-
const value = Math.max(
470+
const value = Math.min(
471471
4,
472472
parseInt(e.target.value, 10) || 4,
473473
);

0 commit comments

Comments
 (0)