]> cat aescling's git repositories - mastodon.git/commitdiff
Fix duplication of tag in columns_area.js (#4131)
authorLynx Kotoura <lynx@lv9.org>
Mon, 10 Jul 2017 02:37:10 +0000 (11:37 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Mon, 10 Jul 2017 02:37:10 +0000 (04:37 +0200)
Deleted ">" just a typo.

app/javascript/mastodon/features/ui/components/columns_area.js

index 9ff913774975d35948e8c28ff209241d6a2e3376..cbc185a7d60c906f807773be58b4a04a108d5350 100644 (file)
@@ -74,7 +74,7 @@ export default class ColumnsArea extends ImmutablePureComponent {
         <ReactSwipeableViews index={columnIndex} onChangeIndex={this.handleSwipe} animateTransitions={false} style={{ height: '100%' }}>
           {links.map(this.renderView)}
         </ReactSwipeableViews>
-      ) : <div className='columns-area'>{children}></div>;
+      ) : <div className='columns-area'>{children}</div>;
     }
 
     return (