Skip to content
Snippets Groups Projects
Commit 1c6cbdd4 authored by Lynx Kotoura's avatar Lynx Kotoura Committed by Eugen Rochko
Browse files

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

Deleted ">" just a typo.
parent f8212da3
No related branches found
No related tags found
No related merge requests found
......@@ -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 (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment