Skip to content

Commit 57e1304

Browse files
authored
chore: Study Name Pattern Regex Removed (#113)
* Remove incorrect regex pattern matching
1 parent c3eabde commit 57e1304

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/client/src/components/NewStudyJsonForm.component.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ export const NewStudyJsonForm: React.FC<NewStudyFormProps> = (props) => {
2222
type: 'object',
2323
properties: {
2424
name: {
25-
type: 'string',
26-
pattern: '^[a-zA-Z 0-9]*$'
25+
type: 'string'
2726
},
2827
description: {
2928
type: 'string'

0 commit comments

Comments
 (0)