diff options
author | Lynx Kotoura <lynx@lv9.org> | 2017-07-10 11:37:10 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-10 04:37:10 +0200 |
commit | 1c6cbdd4e4894cc5c8928fe1d6f45d781049a59c (patch) | |
tree | ab85a5bad6785a849eaebfd51ce17955758bf2b9 /app | |
parent | f8212da329cf857478746c23314e5c662cd490e3 (diff) |
Fix duplication of tag in columns_area.js (#4131)
Deleted ">" just a typo.
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/ui/components/columns_area.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/components/columns_area.js b/app/javascript/mastodon/features/ui/components/columns_area.js index 9ff913774..cbc185a7d 100644 --- a/app/javascript/mastodon/features/ui/components/columns_area.js +++ b/app/javascript/mastodon/features/ui/components/columns_area.js @@ -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 ( |