Skip to content

Commit

Permalink
fixed breaking error caused by Object.values() polyfill not being inc…
Browse files Browse the repository at this point in the history
…luded
  • Loading branch information
mldangelo committed Feb 21, 2017
1 parent fe11bb8 commit ab1454f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Stats/Personal.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class PersonalStats extends Component {
<div>
<h3>Some stats about me</h3>
<Table
data={Object.values(this.state.data)}
data={Object.keys(this.state.data).map(key => this.state.data[key])}
/>
</div>
);
Expand Down

0 comments on commit ab1454f

Please sign in to comment.