Skip to content

Commit

Permalink
fix: remove char that messes up the link
Browse files Browse the repository at this point in the history
  • Loading branch information
smuu authored Jul 7, 2023
1 parent 62fa278 commit 37ce0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ItemDialogContentRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ module.exports.render = function({settings, tweetsCount, itemInfo}) {
<div class="product-property row">
<div class="product-property-name col col-40">First Commit</div>
<div class="product-property-value tight-col col-60">
<a data-type="external" target=_blank href=${h(itemInfo.firstCommitLink)}">${formatDate(itemInfo.firstCommitDate)}</a>
<a data-type="external" target=_blank href=${h(itemInfo.firstCommitLink)}>${formatDate(itemInfo.firstCommitDate)}</a>
</div>
</div>
` : '';
Expand Down

0 comments on commit 37ce0e2

Please sign in to comment.