File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
apps/webapp/app/components/runs/v3 Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -359,8 +359,8 @@ function BatchIdDropdown({
359359 if ( batchId ) {
360360 if ( ! batchId . startsWith ( "batch_" ) ) {
361361 error = "Batch IDs start with 'batch_'" ;
362- } else if ( batchId . length !== 27 ) {
363- error = "Batch IDs are 27 characters long" ;
362+ } else if ( batchId . length !== 27 && batchId . length !== 31 ) {
363+ error = "Batch IDs are 27/32 characters long" ;
364364 }
365365 }
366366
Original file line number Diff line number Diff line change @@ -763,8 +763,8 @@ function RunIdDropdown({
763763 if ( runId ) {
764764 if ( ! runId . startsWith ( "run_" ) ) {
765765 error = "Run IDs start with 'run_'" ;
766- } else if ( runId . length !== 25 ) {
767- error = "Run IDs are 25 characters long" ;
766+ } else if ( runId . length !== 25 && runId . length !== 29 ) {
767+ error = "Run IDs are 25/30 characters long" ;
768768 }
769769 }
770770
You can’t perform that action at this time.
0 commit comments