about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/compose_panel.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-06-16 18:46:55 +0200
committerEugen Rochko <eugen@zeonfederated.com>2019-06-16 18:46:55 +0200
commit01e362316c5273ab5ae6acaa44834260b731fe57 (patch)
tree6a6791e36bd15db5df2c19861badcaf494406899 /app/javascript/mastodon/features/ui/components/compose_panel.js
parent082812678411429e1c0d8ce628a428916bb7c703 (diff)
Do not scroll in the compose panel on single-column (#11093)
Diffstat (limited to 'app/javascript/mastodon/features/ui/components/compose_panel.js')
-rw-r--r--app/javascript/mastodon/features/ui/components/compose_panel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/components/compose_panel.js b/app/javascript/mastodon/features/ui/components/compose_panel.js
index a05fbbe39..c7821f473 100644
--- a/app/javascript/mastodon/features/ui/components/compose_panel.js
+++ b/app/javascript/mastodon/features/ui/components/compose_panel.js
@@ -8,7 +8,7 @@ const ComposePanel = () => (
   <div className='compose-panel'>
     <SearchContainer openInRoute />
     <NavigationContainer />
-    <ComposeFormContainer />
+    <ComposeFormContainer singleColumn />
     <LinkFooter withHotkeys />
   </div>
 );