change(ui) - other form input length
This commit is contained in:
parent
5cb7418d33
commit
f5cf2c48ca
3 changed files with 4 additions and 0 deletions
|
|
@ -37,6 +37,7 @@ class CustomFieldForm extends React.PureComponent {
|
|||
value={field.key}
|
||||
onChange={this.write}
|
||||
placeholder="Field Name"
|
||||
maxLength={50}
|
||||
/>
|
||||
</Form.Field>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ function WebhookForm(props) {
|
|||
value={webhook.name}
|
||||
onChange={write}
|
||||
placeholder="Name"
|
||||
maxLength={50}
|
||||
/>
|
||||
</Form.Field>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue