logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 5be55b61623e79e075ca461db56159cb6324fa28
parent 9726edd8c0b331edddb2efb89b1135f385c8d224
Author: lain <lain@soykaf.club>
Date:   Mon, 27 Jul 2020 14:45:15 +0000

Merge branch 'fix/poll-option-delete' into 'develop'

Fix #903: update poll to post-status-form on deleting option

Closes #903

See merge request pleroma/pleroma-fe!1204

Diffstat:

Msrc/components/poll/poll_form.js1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/components/poll/poll_form.js b/src/components/poll/poll_form.js @@ -75,6 +75,7 @@ export default { deleteOption (index, event) { if (this.options.length > 2) { this.options.splice(index, 1) + this.updatePollToParent() } }, convertExpiryToUnit (unit, amount) {