Fix order of migrations
This commit is contained in:
parent
ca04002c93
commit
51a7047367
3 changed files with 3 additions and 3 deletions
|
@ -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' />;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue