Fix vanilla flavor being broken due to incorrect imports

main v3.5.3+1.1.6
Jeremy Kescher 2 years ago
parent c2e83b1354
commit 996267fc8b
No known key found for this signature in database
GPG Key ID: 48DFE4BB15BA5940

@ -7,7 +7,7 @@ import IconButton from 'mastodon/components/icon_button';
import Icon from 'mastodon/components/icon';
import AutosuggestInput from 'mastodon/components/autosuggest_input';
import classNames from 'classnames';
import { pollLimits } from 'mastodon/initial_state';
import { pollMinOptions } from 'mastodon/initial_state';
const messages = defineMessages({
option_placeholder: { id: 'compose_form.poll.option_placeholder', defaultMessage: 'Choice {number}' },

@ -52,7 +52,7 @@ import { STORE_HYDRATE } from '../actions/store';
import { REDRAFT } from '../actions/statuses';
import { Map as ImmutableMap, List as ImmutableList, OrderedSet as ImmutableOrderedSet, fromJS } from 'immutable';
import uuid from '../uuid';
import { me, pollLimits } from '../initial_state';
import { me, pollMinOptions } from '../initial_state';
import { unescapeHTML } from '../utils/html';
const initialState = ImmutableMap({

@ -25,7 +25,7 @@ module Mastodon
end
def suffix_version
'+1.1.5'
'+1.1.6'
end
def to_a

Loading…
Cancel
Save