mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-29 05:43:40 +01:00
Fix vanilla flavor being broken due to incorrect imports
This commit is contained in:
parent
c2e83b1354
commit
996267fc8b
3 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue