From 7b9867e21cc1eb541a5531bbe2712229b0d3cbf6 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Thu, 17 Apr 2025 18:44:31 +0100 Subject: [PATCH] New batch id length is longer --- apps/webapp/app/components/runs/v3/RunFilters.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/webapp/app/components/runs/v3/RunFilters.tsx b/apps/webapp/app/components/runs/v3/RunFilters.tsx index 5529033b21..393acb7616 100644 --- a/apps/webapp/app/components/runs/v3/RunFilters.tsx +++ b/apps/webapp/app/components/runs/v3/RunFilters.tsx @@ -841,8 +841,8 @@ function BatchIdDropdown({ if (batchId) { if (!batchId.startsWith("batch_")) { error = "Batch IDs start with 'batch_'"; - } else if (batchId.length !== 27) { - error = "Batch IDs are 27 characters long"; + } else if (batchId.length !== 27 && batchId.length !== 31) { + error = "Batch IDs are 27 or 31 characters long"; } }