We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb7a266 commit 15668f3Copy full SHA for 15668f3
1 file changed
frontend/src/ts/modals/edit-result-tags.ts
@@ -76,7 +76,7 @@ function appendButtons(): void {
76
const button = document.createElement("button");
77
button.classList.add("toggleTag");
78
button.setAttribute("data-tag-id", tagId);
79
- button.innerHTML = tag?.name ?? tag?._id ?? "unknown tag"; //this shouldnt happen?
+ button.textContent = tag?.name ?? tag?._id ?? "unknown tag"; //this shouldnt happen?
80
button.addEventListener("click", (e) => {
81
toggleTag(tagId);
82
updateActiveButtons();
0 commit comments