Skip to content

Commit

Permalink
Merge pull request #25 from DREDGE-Mods/dev
Browse files Browse the repository at this point in the history
Remove "v" from version string
  • Loading branch information
xen-42 authored Dec 5, 2023
2 parents 2d466b1 + f6ea4d0 commit b047fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/mods.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import json from '../database.json';
<p>{x.description}</p>
</div>
<div class="opacity-50">
<p><i>By {x.author}{x.downloads} downloads • Version {x.latest_version}</i></p>
<p><i>By {x.author}{x.downloads} downloads • Version {x.latest_version.replace(/^v/, "")}</i></p>
<BrandLink class="fa-github" name={x.name + " on GitHub"} url={"https://www.github.com/" + x.repo} linkClass="link-light" />
</div>
</div>
Expand Down

0 comments on commit b047fcc

Please sign in to comment.