In / Out Edges Viz, Submitting Button Text
Some checks failed
API CI / api-tests (pull_request) Failing after 17s
CI / test (pull_request) Failing after 22s

This commit is contained in:
Tim Lorsbach
2026-06-24 20:45:15 +02:00
parent 0842f67560
commit 5c6b854bde
4 changed files with 80 additions and 1 deletions

View File

@ -212,7 +212,11 @@
e.preventDefault();
const button = this;
button.disabled = true;
button.textContent = "Predicting...";
if (document.getElementById("predict-submit-button").innerText === "Build") {
button.textContent = "Building...";
} else {
button.textContent = "Predicting...";
}
// Get SMILES from either input or Ketcher
const smilesInput = document.getElementById("predict-smiles");