Skip to content

Commit

Permalink
Fix for IV Sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
mackhankins committed Aug 12, 2016
1 parent e09247f commit 45640c4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions js/screens/Table/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function format (d) {
html += '<td data-order="' + poke.name + i + '">' + poke.td_name + '</td>'
html += '<td data-order="' + poke.nickname + i + '">' + poke.td_nickname + '</td>'
html += '<td>' + poke.td_cp + '</td>'
html += '<td>' + poke.td_pokeiv + '</td>'
html += '<td data-order="' + poke.iv + '">' + poke.td_pokeiv + '</td>'
html += '</tr>'
}
html += '</tbody>'
Expand Down Expand Up @@ -250,15 +250,15 @@ const Table = React.createClass({

<table className='table table-condensed table-hover display' id='pokemon-data'>
<thead>
<tr>
<th></th>
<th width='18%'>Pokédex #</th>
<th>Sprite</th>
<th>Name</th>
<th>Count</th>
<th>Candy</th>
<th>Evolves</th>
</tr>
<tr>
<th></th>
<th width='18%'>Pokédex #</th>
<th>Sprite</th>
<th>Name</th>
<th>Count</th>
<th>Candy</th>
<th>Evolves</th>
</tr>
</thead>
</table>
</div>
Expand Down Expand Up @@ -406,4 +406,4 @@ const Table = React.createClass({
}
})

export default Table
export default Table

0 comments on commit 45640c4

Please sign in to comment.