change(ui) - other form input length

This commit is contained in:
Shekar Siri 2023-02-03 15:36:43 +01:00 committed by Taha Yassine Kraiem
parent 5cb7418d33
commit f5cf2c48ca
3 changed files with 4 additions and 0 deletions

View file

@ -37,6 +37,7 @@ class CustomFieldForm extends React.PureComponent {
value={field.key}
onChange={this.write}
placeholder="Field Name"
maxLength={50}
/>
</Form.Field>

View file

@ -51,6 +51,7 @@ export default class Settings extends React.PureComponent {
type="text"
onChange={ this.onChange }
value={ accountName }
maxLength={50}
/>
</Form.Field>
@ -62,6 +63,7 @@ export default class Settings extends React.PureComponent {
type="text"
onChange={ this.onChange }
value={ organizationName }
maxLength={50}
/>
</Form.Field>

View file

@ -27,6 +27,7 @@ function WebhookForm(props) {
value={webhook.name}
onChange={write}
placeholder="Name"
maxLength={50}
/>
</Form.Field>