about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/ui/components/compose_panel.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-06-16 16:02:26 +0200
committerThibG <thib@sitedethib.com>2019-06-16 19:13:22 +0200
commitd3aaacb6d48ab815a79cc4feb6b2c9a1ffc41717 (patch)
tree9859b49170764a8bb5932679dcce200c6c13b248 /app/javascript/flavours/glitch/features/ui/components/compose_panel.js
parenta29ab6f1bdd13262d206e41c66dea15ed4dc3f22 (diff)
Do not scroll in the compose panel on single-column
Diffstat (limited to 'app/javascript/flavours/glitch/features/ui/components/compose_panel.js')
-rw-r--r--app/javascript/flavours/glitch/features/ui/components/compose_panel.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/compose_panel.js b/app/javascript/flavours/glitch/features/ui/components/compose_panel.js
index f5eefee0d..498f09ab6 100644
--- a/app/javascript/flavours/glitch/features/ui/components/compose_panel.js
+++ b/app/javascript/flavours/glitch/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>
 );