Skip to content

Commit

Permalink
fix: Add semicolons because the spec wants it :(
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Jan 10, 2016
1 parent 794c1c0 commit 208e5d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/scripts/pages/logs.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ export default class Logs extends Component {
static propTypes = {
ipfs: PropTypes.object,
host: PropTypes.string
}
};

state = {
log: [],
tailing: true,
nonce: 0,
request: null
}
};

_onLogData = chunk => {
this.setState(oldState => {
Expand All @@ -31,7 +31,7 @@ export default class Logs extends Component {
nonce: oldState.nonce + 1
}
})
}
};

componentWillMount () {
const request = this.props.ipfs.log.tail((err, stream) => {
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/views/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class ObjectView extends Component {
Data: PropTypes.string,
Links: PropTypes.array
}).isRequired
}
};

render () {
const {object, path, permalink, gateway} = this.props
Expand Down

0 comments on commit 208e5d1

Please sign in to comment.