0
0
Fork 0

Increase poll option length limit to 100 chars, number of options to 5

This commit is contained in:
Thibaut Girka 2019-09-13 22:32:19 +02:00 committed by ThibG
parent bc0399d54d
commit b3dd0d276d
2 changed files with 4 additions and 4 deletions

View file

@ -77,7 +77,7 @@ class Option extends React.PureComponent {
<AutosuggestInput
placeholder={intl.formatMessage(messages.option_placeholder, { number: index + 1 })}
maxLength={25}
maxLength={100}
value={title}
onChange={this.handleOptionTitleChange}
suggestions={this.props.suggestions}
@ -142,7 +142,7 @@ class PollForm extends ImmutablePureComponent {
</ul>
<div className='poll__footer'>
{options.size < 4 && (
{options.size < 5 && (
<button className='button button-secondary' onClick={this.handleAddOption}><Icon id='plus' /> <FormattedMessage {...messages.add_option} /></button>
)}