Skip to content

Commit

Permalink
Fix lint error, reduce th size, rename size
Browse files Browse the repository at this point in the history
  • Loading branch information
davkal committed Nov 6, 2017
1 parent 54a357d commit 4812135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Sunburst.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ const Table = (props) => (
<table>
<thead>
<tr>
<th className="left-align py1">Name</th>
<th className="right-align py1">Size</th>
<th className="left-align py1 h6">Name</th>
<th className="right-align py1 h6">Count</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -246,7 +246,7 @@ class Sunburst extends Component {
};

render() {
const { classNames = '', title, count } = this.props;
const { classNames = '', title } = this.props;
const { offenders } = this.state;

return (
Expand Down

0 comments on commit 4812135

Please sign in to comment.