We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f9352 commit e9c6cc7Copy full SHA for e9c6cc7
apps/webapp/app/components/runs/v3/RunFilters.tsx
@@ -841,8 +841,8 @@ function BatchIdDropdown({
841
if (batchId) {
842
if (!batchId.startsWith("batch_")) {
843
error = "Batch IDs start with 'batch_'";
844
- } else if (batchId.length !== 27) {
845
- error = "Batch IDs are 27 characters long";
+ } else if (batchId.length !== 27 && batchId.length !== 31) {
+ error = "Batch IDs are 27 or 31 characters long";
846
}
847
848
0 commit comments