0
0
Fork 0

Fix not being able to vote (#13490)

Fix regression introduced by ab8d7c0680
This commit is contained in:
ThibG 2020-04-17 21:54:25 +02:00 committed by GitHub
parent 89077fb657
commit e12a5635da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -2,7 +2,7 @@ import { connect } from 'react-redux';
import { debounce } from 'lodash';
import Poll from 'mastodon/components/poll';
import { fetchPoll } from 'mastodon/actions/polls';
import { fetchPoll, vote } from 'mastodon/actions/polls';
const mapDispatchToProps = (dispatch, { pollId }) => ({
refresh: debounce(
@ -12,6 +12,10 @@ const mapDispatchToProps = (dispatch, { pollId }) => ({
1000,
{ leading: true },
),
onVote (choices) {
dispatch(vote(pollId, choices));
},
});
const mapStateToProps = (state, { pollId }) => ({