logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 1c6cbdd4e4894cc5c8928fe1d6f45d781049a59c
parent: f8212da329cf857478746c23314e5c662cd490e3
Author: Lynx Kotoura <lynx@lv9.org>
Date:   Mon, 10 Jul 2017 11:37:10 +0900

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

Deleted ">" just a typo.

Diffstat:

Mapp/javascript/mastodon/features/ui/components/columns_area.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 (