fix: increase poll answer max length to 50 (#2086)

Fixes #2077
This commit is contained in:
Nolan Lawson 2021-08-06 15:20:48 -07:00 committed by GitHub
parent a1e105ccef
commit 9d5157f15c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)}"