Skip to content

Commit

Permalink
fix(toolbarFieldDisplayName): issues/569 maxlength char limit (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcabrera committed Feb 16, 2021
1 parent 9427794 commit b3d5e4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ exports[`ToolbarFieldDisplayName Component should render a non-connected compone
id={null}
isDisabled={false}
isReadOnly={false}
maxLength={255}
name={null}
onChange={[Function]}
onClear={[Function]}
Expand Down
1 change: 1 addition & 0 deletions src/components/toolbar/toolbarFieldDisplayName.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ const ToolbarFieldDisplayName = ({ value, t, viewId }) => {
<InputGroup>
<TextInput
aria-label={t('curiosity-toolbar.placeholder', { context: 'displayName' })}
maxLength={255}
onChange={onChange}
onClear={onClear}
onKeyUp={onKeyUp}
Expand Down

0 comments on commit b3d5e4f

Please sign in to comment.