forked from treehouse/mastodon
[Glitch] Fix tag rendering error in hashtag column settings
Port e65080181a
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
signup-info-prompt
parent
09c61e1376
commit
f011787003
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue