[Glitch] Fix error while server rules are loading in report modal in web UI

Port 4c7b5fb6c1 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Eugen Rochko 2 years ago committed by Claire
parent 39ec0e8398
commit 2aa70c112a
  1. 3
      app/javascript/flavours/glitch/features/report/category.js

@ -5,6 +5,7 @@ import { connect } from 'react-redux';
import { defineMessages, injectIntl, FormattedMessage } from 'react-intl';
import Button from 'flavours/glitch/components/button';
import Option from './components/option';
import { List as ImmutableList } from 'immutable';
const messages = defineMessages({
dislike: { id: 'report.reasons.dislike', defaultMessage: 'I don\'t like it' },
@ -20,7 +21,7 @@ const messages = defineMessages({
});
const mapStateToProps = state => ({
rules: state.getIn(['server', 'rules']),
rules: state.getIn(['server', 'rules'], ImmutableList()),
});
export default @connect(mapStateToProps)

Loading…
Cancel
Save