Upgrade npm app dependencies

This commit is contained in:
David Kaltschmidt
2016-03-15 13:36:53 +01:00
parent 7a0235499e
commit 658a38f40a
5 changed files with 15 additions and 15 deletions

View File

@@ -145,7 +145,7 @@ export default class NodeDetailsTable extends React.Component {
render() {
const headers = this.renderHeaders();
let nodes = _.sortByAll(this.props.nodes, this.getValueForSortBy, 'label', this.getMetaDataSorters());
let nodes = _.sortBy(this.props.nodes, this.getValueForSortBy, 'label', this.getMetaDataSorters());
const limited = nodes && this.state.limit > 0 && nodes.length > this.state.limit;
const expanded = this.state.limit === 0;
const notShown = nodes.length - this.DEFAULT_LIMIT;