about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/collapsable.js
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2018-01-18 09:13:07 -0600
committerDavid Yip <yipdw@member.fsf.org>2018-01-18 09:13:07 -0600
commit708ec07e27dd02d03f2d155bcc61ae8de4c10c4a (patch)
treece95aed1d6892e4387cbdd613ea67f61446a0a18 /app/javascript/flavours/glitch/components/collapsable.js
parentaa2bf07281ba1e41c9e32a760684c15081524a7c (diff)
Style fixes to make eslint happier, hopefully
Diffstat (limited to 'app/javascript/flavours/glitch/components/collapsable.js')
-rw-r--r--app/javascript/flavours/glitch/components/collapsable.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/components/collapsable.js b/app/javascript/flavours/glitch/components/collapsable.js
index fe125a729..0e8b04033 100644
--- a/app/javascript/flavours/glitch/components/collapsable.js
+++ b/app/javascript/flavours/glitch/components/collapsable.js
@@ -6,9 +6,9 @@ import PropTypes from 'prop-types';
 const Collapsable = ({ fullHeight, isVisible, children }) => (
   <Motion defaultStyle={{ opacity: !isVisible ? 0 : 100, height: isVisible ? fullHeight : 0 }} style={{ opacity: spring(!isVisible ? 0 : 100), height: spring(!isVisible ? 0 : fullHeight) }}>
     {({ opacity, height }) =>
-      <div style={{ height: `${height}px`, overflow: 'hidden', opacity: opacity / 100, display: Math.floor(opacity) === 0 ? 'none' : 'block' }}>
+      (<div style={{ height: `${height}px`, overflow: 'hidden', opacity: opacity / 100, display: Math.floor(opacity) === 0 ? 'none' : 'block' }}>
         {children}
-      </div>
+      </div>)
     }
   </Motion>
 );