From 5baeb90bd41a601056cf73bbd00ecc321f4d9ec3 Mon Sep 17 00:00:00 2001 From: Rens Groothuijsen Date: Sun, 26 Dec 2021 19:22:05 +0100 Subject: [PATCH] [Glitch] Fix tag rendering error in hashtag column settings Port 9d438634268de199572a11839aab7eab0c75b7e3 to glitch-soc Signed-off-by: Claire --- .../features/hashtag_timeline/components/column_settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 de1127b0d5..142118cefc 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; }