From: Rens Groothuijsen Date: Sun, 26 Dec 2021 18:22:05 +0000 (+0100) Subject: [Glitch] Fix tag rendering error in hashtag column settings X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=f011787003bcb801b487ad3f5229e324a37c9e1d;p=mastodon.git [Glitch] Fix tag rendering error in hashtag column settings Port e65080181af82c14d3441a0890f2ba0a6fb9cd7e to glitch-soc Signed-off-by: Claire --- diff --git a/app/javascript/flavours/glitch/features/hashtag_timeline/components/column_settings.js b/app/javascript/flavours/glitch/features/hashtag_timeline/components/column_settings.js index de1127b0d..142118cef 100644 --- a/app/javascript/flavours/glitch/features/hashtag_timeline/components/column_settings.js +++ b/app/javascript/flavours/glitch/features/hashtag_timeline/components/column_settings.js @@ -33,8 +33,8 @@ class ColumnSettings extends React.PureComponent { tags (mode) { let tags = this.props.settings.getIn(['tags', mode]) || []; - if (tags.toJSON) { - return tags.toJSON(); + if (tags.toJS) { + return tags.toJS(); } else { return tags; }