re-introduced the fixed point so that it's cleaner

and more aligned
This commit is contained in:
Karma Riuk
2025-05-14 15:55:43 +02:00
parent c49ed9608a
commit 828374e31e

View File

@ -60,7 +60,7 @@ document.getElementById("upload-btn").onclick = async () => {
idCell.textContent = id; idCell.textContent = id;
commentCell.innerHTML = `<span class='comment-cell'>${info["proposed_comment"]}</span>`; commentCell.innerHTML = `<span class='comment-cell'>${info["proposed_comment"]}</span>`;
scoreCell.textContent = info["max_bleu_score"]; scoreCell.textContent = info["max_bleu_score"].toFixed(2);
}); });
}; };