about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/columns_area.js
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2021-04-20 21:28:01 +0200
committerGitHub <noreply@github.com>2021-04-20 21:28:01 +0200
commit2c322addf378d17b3962b545572a43cc9d36e526 (patch)
tree1cf932e42de41807bf0b2f476ce77eb058047752 /app/javascript/mastodon/features/ui/components/columns_area.js
parent7762d3d27592abe60946ac26a3a2012cd3311fb1 (diff)
Hide floating action button on onboarding page (#16082)
Diffstat (limited to 'app/javascript/mastodon/features/ui/components/columns_area.js')
-rw-r--r--app/javascript/mastodon/features/ui/components/columns_area.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/components/columns_area.js b/app/javascript/mastodon/features/ui/components/columns_area.js
index 270be2851..039abe432 100644
--- a/app/javascript/mastodon/features/ui/components/columns_area.js
+++ b/app/javascript/mastodon/features/ui/components/columns_area.js
@@ -53,7 +53,7 @@ const messages = defineMessages({
   publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
 });
 
-const shouldHideFAB = path => path.match(/^\/statuses\/|^\/search|^\/getting-started/);
+const shouldHideFAB = path => path.match(/^\/statuses\/|^\/search|^\/getting-started|^\/start/);
 
 export default @(component => injectIntl(component, { withRef: true }))
 class ColumnsArea extends ImmutablePureComponent {