Skip to content

Commit

Permalink
Validate module name length
Browse files Browse the repository at this point in the history
  • Loading branch information
alfespa17 committed May 3, 2024
1 parent b78570b commit 8a37439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/domain/Modules/Create.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ export const CreateModule = () => {
<Form.Item
name="name"
label="Module Name"
rules={[{ required: true }, { maxLength: 32, message: "Value should be less than 32 character",},]}
rules={[{ required: true }, { maxLength: 32, message: "Value should be less than 32 character"}]}
extra="The name of your module generally names the abstraction that the module is intending to create."
>
<Input />
Expand Down

0 comments on commit 8a37439

Please sign in to comment.