]> cat aescling's git repositories - mastodon.git/commitdiff
Hide floating action button on onboarding page (#16082)
authorClaire <claire.github-309c@sitedethib.com>
Tue, 20 Apr 2021 19:28:01 +0000 (21:28 +0200)
committerGitHub <noreply@github.com>
Tue, 20 Apr 2021 19:28:01 +0000 (21:28 +0200)
app/javascript/mastodon/features/ui/components/columns_area.js

index 270be285168817c229a5bfccf84ad38403889c91..039abe432afb97d6bf408a7354db720919ff849b 100644 (file)
@@ -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 {