fix: increase poll answer max length to 50

Fixes #2077
This commit is contained in:
Nolan Lawson 2021-08-06 14:52:44 -07:00
parent a1e105ccef
commit bb764d3399
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
{#each poll.options as option, i}
<input id="poll-option-{realm}-{i}"
type="text"
maxlength="25"
maxlength="50"
on:change="onChange(i)"
placeholder="{createLabel(i)}"