Style: no more var
This commit is contained in:
@@ -4,7 +4,7 @@ const {dispatcher} = require('../lib/dispatcher')
|
||||
|
||||
class Header extends React.Component {
|
||||
render () {
|
||||
var loc = this.props.state.location
|
||||
const loc = this.props.state.location
|
||||
return (
|
||||
<div className='header'>
|
||||
{this.getTitle()}
|
||||
@@ -31,12 +31,12 @@ class Header extends React.Component {
|
||||
|
||||
getTitle () {
|
||||
if (process.platform !== 'darwin') return null
|
||||
var state = this.props.state
|
||||
const state = this.props.state
|
||||
return (<div className='title ellipsis'>{state.window.title}</div>)
|
||||
}
|
||||
|
||||
getAddButton () {
|
||||
var state = this.props.state
|
||||
const state = this.props.state
|
||||
if (state.location.url() !== 'home') return null
|
||||
return (
|
||||
<i
|
||||
|
||||
Reference in New Issue
Block a user