about summary refs log tree commit diff
path: root/app/javascript
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-12-27 15:16:18 +0100
committerClaire <claire.github-309c@sitedethib.com>2021-12-27 15:16:18 +0100
commit09c61e13767f7b77618949f422f229b638381088 (patch)
tree4729cdeb166e05b4e8b6e594be3f8487378aacad /app/javascript
parent3b9a6049adf3ee6844a81622c297dd893836f79d (diff)
parentfe71548844715d796b9a6d2dd5234f70cf080f13 (diff)
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts:
- `README.md`:
  We have completely different contents. Kept our version.
- `package.json`:
  Not a real conflict, just an upstream dependency udpated
  textually too close to a glitch-soc-only dependency.
  Updated dependencies like upstream.
- `streaming/index.js`:
  Conflict due to code style changes on parts that were
  modified in glitch-soc to handle local-only toots.
  Changed style according to upstream.
Diffstat (limited to 'app/javascript')
-rw-r--r--app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js b/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js
index de1127b0d..142118cef 100644
--- a/app/javascript/mastodon/features/hashtag_timeline/components/column_settings.js
+++ b/app/javascript/mastodon/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;
     }