Browse Source

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

Deleted ">" just a typo.
pull/4/head
Lynx Kotoura 6 years ago
committed by Eugen Rochko
parent
commit
1c6cbdd4e4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/features/ui/components/columns_area.js

+ 1
- 1
app/javascript/mastodon/features/ui/components/columns_area.js View 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}&gt;&lt;/div>;
) : <div className='columns-area'>{children}</div>;
}
return (

Loading…
Cancel
Save