Skip to content

Commit

Permalink
feat(ci): remove duplicated v from version
Browse files Browse the repository at this point in the history
  • Loading branch information
teomrd committed Nov 2, 2024
1 parent 91ea577 commit 000b4ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/utils/pageTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const setPageTitle = (what) => {
const resetPageTitle = () => {
const baseTitle = _getBasePageTitle();
document.title = baseTitle;
select("title").innerHTML(`${TITLE_NAME} v${VERSION}`);
select("title").innerHTML(`${TITLE_NAME} ${VERSION}`);
select(".title h3").innerHTML(
`${TITLE_NAME} <span class="version">v${VERSION}</span>`,
`${TITLE_NAME} <span class="version">${VERSION}</span>`,
);
};

Expand Down

0 comments on commit 000b4ee

Please sign in to comment.