Skip to content

Commit

Permalink
bounty: hide timeline on cancelled bounties (gitcoinco#922)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc authored and mbeacom committed Apr 20, 2018
1 parent 78d7478 commit 63177b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/v2/js/pages/bounty_details.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ var callbacks = {
} else {
$('#timer').hide();
}
} else if (result['status'] === 'done') {
} else if (result['status'] === 'done' || result['status'] === 'cancelled') {
$('#timer').hide();
} else {
response.shift();
Expand Down

0 comments on commit 63177b0

Please sign in to comment.