about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/ui
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-06-16 16:02:26 +0200
committermultiple creatures <dev@multiple-creature.party>2020-02-22 01:31:14 -0600
commit402afc67c4e859c56cd84f2120d89c080812fa6d (patch)
tree0d71c56a164e02ed8d13ec457ce4999ee9cbcd52 /app/javascript/flavours/glitch/features/ui
parentef5ad472bb0108ca00af5f6b0f4dfff7dee04190 (diff)
Do not scroll in the compose panel on single-column
Diffstat (limited to 'app/javascript/flavours/glitch/features/ui')
-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>
 );