diff options
author | David Yip <yipdw@member.fsf.org> | 2017-10-12 09:23:06 -0500 |
---|---|---|
committer | David Yip <yipdw@member.fsf.org> | 2017-10-12 09:23:06 -0500 |
commit | fe1c20cfb948a2de08e1bab6fd135ded94f95a7d (patch) | |
tree | c100e026a16b52df407bec63384f748656abee10 | |
parent | edd1a00fafb5d41afad0c177e7c2f2f6adae6d19 (diff) |
Fix tabs-vs-spaces issue pointed out by eslint.
-rw-r--r-- | app/javascript/mastodon/features/ui/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js index 14a5f6224..b093d2db5 100644 --- a/app/javascript/mastodon/features/ui/index.js +++ b/app/javascript/mastodon/features/ui/index.js @@ -368,7 +368,7 @@ export default class UI extends React.Component { return ( <HotKeys keyMap={keyMap} handlers={handlers} ref={this.setHotkeysRef}> <div className={className} ref={this.setRef}> - {navbarUnder ? null : (<TabsBar />)} + {navbarUnder ? null : (<TabsBar />)} <ColumnsAreaContainer ref={this.setColumnsAreaRef} singleColumn={isMobile(width, layout)}> <WrappedSwitch> |