Skip to content
This repository was archived by the owner on Jan 4, 2018. It is now read-only.

Commit 7ab0de9

Browse files
committed
Upgrade deps
1 parent 0b104b5 commit 7ab0de9

File tree

17 files changed

+42
-42
lines changed

17 files changed

+42
-42
lines changed

lib/Root.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function logout (nextState, replaceState) {
9393
class Root extends React.Component {
9494
static propTypes = {
9595
application: PropTypes.object.isRequired
96-
}
96+
};
9797

9898
render () {
9999
return (

lib/components/Application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default class Application extends React.Component {
88

99
static propTypes = {
1010
children: PropTypes.any
11-
}
11+
};
1212

1313
constructor (props, context) {
1414
super(props, context)

lib/components/DisplayError.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class DisplayError extends React.Component {
77
static propTypes = {
88
hideError: PropTypes.func.isRequired,
99
error: PropTypes.object
10-
}
10+
};
1111

1212
render () {
1313
const { props: { hideError, error } } = this

lib/components/Menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class Menu extends React.Component {
1919
activeClass: PropTypes.string.isRequired,
2020
application: PropTypes.object.isRequired,
2121
switchLocale: PropTypes.func.isRequired
22-
}
22+
};
2323

2424
constructor (props, context) {
2525
super(props, context)

lib/components/MenuListItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ export default class MenuListItem extends Component {
88
isExternal: PropTypes.bool,
99
link: PropTypes.string.isRequired,
1010
text: PropTypes.string.isRequired
11-
}
11+
};
1212

13-
static defaultProps = { isExternal: false }
13+
static defaultProps = { isExternal: false };
1414

1515
render () {
1616
return (

lib/components/github/Explore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ export default class Explore extends React.Component {
2727
repo: PropTypes.string,
2828
username: PropTypes.string
2929
})
30-
}
30+
};
3131

3232
static contextTypes = {
3333
history: PropTypes.object.isRequired
34-
}
34+
};
3535

3636
constructor (props) {
3737
super(props)

lib/components/github/Pagination.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default class Pagination extends React.Component {
66
static propTypes = {
77
onPagination: PropTypes.func,
88
pagination: PropTypes.object
9-
}
9+
};
1010

1111
handlePaginationClick (link) {
1212
const page = link.url

lib/components/github/Repo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Repo extends React.Component {
99
static propTypes = {
1010
actions: PropTypes.object,
1111
github: PropTypes.object
12-
}
12+
};
1313

1414
render () {
1515
const { github: { repo, stargazers } } = this.props

lib/components/github/StargazersRepo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class StargazersRepo extends React.Component {
55

66
static propTypes = {
77
repo: PropTypes.object.isRequired
8-
}
8+
};
99

1010
render () {
1111
const { repo } = this.props

lib/components/github/StargazersUser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default class StargazersUser extends React.Component {
55

66
static propTypes = {
77
user: PropTypes.object.isRequired
8-
}
8+
};
99

1010
render () {
1111
const { user } = this.props

0 commit comments

Comments
 (0)