diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-04-20 21:28:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 21:28:01 +0200 |
commit | 2c322addf378d17b3962b545572a43cc9d36e526 (patch) | |
tree | 1cf932e42de41807bf0b2f476ce77eb058047752 /app | |
parent | 7762d3d27592abe60946ac26a3a2012cd3311fb1 (diff) |
Hide floating action button on onboarding page (#16082)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/ui/components/columns_area.js | 2 |
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 { |