0
0
Fork 0

Fix order of migrations

This commit is contained in:
Eugen Rochko 2017-01-25 15:01:00 +01:00
parent ca04002c93
commit 51a7047367
3 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ const StatusContent = React.createClass({
const { hidden } = this.state;
const content = { __html: emojify(status.get('content')) };
const spoilerContent = { __html: emojify(status.get('spoiler_text')) };
const spoilerContent = { __html: emojify(status.get('spoiler_text', '')) };
if (status.get('spoiler_text').length > 0) {
const toggleText = hidden ? <FormattedMessage id='status.show_more' defaultMessage='Show more' /> : <FormattedMessage id='status.show_less' defaultMessage='Show less' />;