Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
Fix erroneous check for clear btns.
Browse files Browse the repository at this point in the history
  • Loading branch information
n1k0 committed Oct 26, 2016
1 parent 139d085 commit 8a58e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Expand Up @@ -107,7 +107,7 @@ function TrackListView({
})
}
<td>
{track.beats.some(v => v) > 0 ?
{track.beats.some(v => v) ?
<a href="" title="Clear track" onClick={event => {
event.preventDefault();
clearTrack(track.id);
Expand Down

0 comments on commit 8a58e8f

Please sign in to comment.