about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-10-23 15:58:24 +0200
committerGitHub <noreply@github.com>2022-10-23 15:58:24 +0200
commit1fd6460b02d2e73c94e7c6b1fa8fdc4d2ae36241 (patch)
tree07f66e273bceb4eb9fd9bd4a9da047ea506c15d7 /app/javascript/mastodon/features/ui/index.js
parentc2c14331b2c04293d8c3f94950027cf9633fd18a (diff)
Change floating action button to be a button in header in web UI (#19422)
- Fix theme color
- Fix elephant being too big on error page on small screens
- Remove "Follows and Followers" link from navigation panel
Diffstat (limited to 'app/javascript/mastodon/features/ui/index.js')
-rw-r--r--app/javascript/mastodon/features/ui/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js
index 7cda5e106..298f2111d 100644
--- a/app/javascript/mastodon/features/ui/index.js
+++ b/app/javascript/mastodon/features/ui/index.js
@@ -145,7 +145,7 @@ class SwitchingColumnsArea extends React.PureComponent {
 
   setRef = c => {
     if (c) {
-      this.node = c.getWrappedInstance();
+      this.node = c;
     }
   }