diff --git a/dlibrary/static/index.js b/dlibrary/static/index.js index 813b33a..8d48595 100644 --- a/dlibrary/static/index.js +++ b/dlibrary/static/index.js @@ -59,8 +59,9 @@ document.addEventListener('DOMContentLoaded', () => { for (let i = 1; i < work.authors.length; ++i) { authorList += `, ${work.authors[i]}`; } - creatorsInfo += (work.circle ? ` (${authorList})]` : `${authorList}]`); + creatorsInfo += (work.circle ? ` (${authorList})` : `${authorList}`); } + creatorsInfo += ']'; creators.textContent = creatorsInfo; link.appendChild(creators);