Skip to content
This repository was archived by the owner on Mar 13, 2023. It is now read-only.

Commit 951bcf3

Browse files
committed
fix(settings): validation: allow uuid to be made up out A-F chars
1 parent 64ecc8b commit 951bcf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/workflow/settings-schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const Schema: Schema = {
9393
description: 'A unique identifier',
9494
explanation: 'This should be left unchanged',
9595
type: 'string',
96-
pattern: '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}',
96+
pattern: '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}',
9797
format: 'uuid'
9898
},
9999

0 commit comments

Comments
 (0)