Skip to content

Commit 3bfc9dd

Browse files
committed
docs(webapp): note why error id filter skips the shared validator
1 parent 9a00d4f commit 3bfc9dd

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/webapp/app/components/runs/v3/RunFilters.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1862,6 +1862,8 @@ function AppliedScheduleIdFilter() {
18621862
);
18631863
}
18641864

1865+
// Error ids are `error_<16-char sha256 fingerprint>`, not a fixed-length generated
1866+
// id, so they intentionally skip makeFriendlyIdValidator (its length check would reject them).
18651867
function validateErrorId(value: string): string | undefined {
18661868
if (!value.startsWith("error_")) return "Error IDs start with 'error_'";
18671869
}

0 commit comments

Comments
 (0)