Fix duplication of tag in columns_area.js (#4131)

Deleted ">" just a typo.
th-downstream
Lynx Kotoura 7 years ago committed by Eugen Rochko
parent 2ffd2303ee
commit 5703923989

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

Loading…
Cancel
Save