about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-04-22 15:41:40 +0200
committerThibG <thib@sitedethib.com>2019-04-22 20:15:47 +0200
commitc3fa4e8e07e5bcc685163959833a989fb15e8029 (patch)
tree6e449439c2944361a96d6113dbc7b015ec0ba79f /app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js
parentd779ec1f0e68ffdfa3ada2992bb2b1ef066655ef (diff)
Fix ReferenceError in dropdown
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js')
-rw-r--r--app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js b/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js
index b4e2ec07b..19d35a8f4 100644
--- a/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js
+++ b/app/javascript/flavours/glitch/features/compose/components/dropdown_menu.js
@@ -91,7 +91,7 @@ class ComposerOptionsDropdownContentItem extends ImmutablePureComponent {
 
         <div className='content'>
           <strong>{text}</strong>
-          {meta ? meta : nil}
+          {meta}
         </div>
       </div>
     );