diff --git a/index.html b/index.html index 0b81e6c..0b280c7 100644 --- a/index.html +++ b/index.html @@ -4520,7 +4520,15 @@ -
+ diff --git a/js/app.js b/js/app.js index 80eb0c6..d790b49 100644 --- a/js/app.js +++ b/js/app.js @@ -406,9 +406,10 @@ document.addEventListener('DOMContentLoaded', async () => { { const repo = 'https://github.com/monochrome-music/monochrome'; const hash = typeof __COMMIT_HASH__ !== 'undefined' ? __COMMIT_HASH__ : 'dev'; - const commitLink = hash !== 'dev' && hash !== 'unknown' - ? `${hash}` - : hash; + const commitLink = + hash !== 'dev' && hash !== 'unknown' + ? `${hash}` + : hash; const repoLink = `monochrome-music/monochrome`; const html = `Commit ${commitLink} ยท ${repoLink}`; const aboutEl = document.getElementById('about-commit-info');