Skip to content

Commit

Permalink
Update assign.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 authored Sep 25, 2023
1 parent b479a95 commit 590e454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/comment/handlers/assign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const getMultiplierInfoToDisplay = async (senderLogin: string, org_id: string, i
if (issueDetailed.priceLabel) {
_bountyToDisplay = (+issueDetailed.priceLabel.substring(7, issueDetailed.priceLabel.length - 4) * value).toString() + " USD";
if (cap) {
_bountyToDisplay = (+issueDetailed.priceLabel.substring(7, issueDetailed.priceLabel.length - 4)).toString() + " USD" + " [Capped]";
_bountyToDisplay = (+issueDetailed.priceLabel.substring(7, issueDetailed.priceLabel.length - 4)).toString() + " USD";
}
}
}
Expand Down

0 comments on commit 590e454

Please sign in to comment.