Web UI: Allow creating polls with only one option

main
Jeremy Kescher 2 years ago
parent f991e35cb2
commit e354a296c1
No known key found for this signature in database
GPG Key ID: 48DFE4BB15BA5940

@ -126,7 +126,7 @@ const initialState = ImmutableMap({
});
const initialPoll = ImmutableMap({
options: ImmutableList(['', '']),
options: ImmutableList(['']),
expires_in: 24 * 3600,
multiple: false,
});

@ -94,7 +94,7 @@ const initialState = ImmutableMap({
});
const initialPoll = ImmutableMap({
options: ImmutableList(['', '']),
options: ImmutableList(['']),
expires_in: 24 * 3600,
multiple: false,
});

Loading…
Cancel
Save