added the possibility of passing a link with the

id of the process
This commit is contained in:
Karma Riuk
2025-05-19 10:13:18 +02:00
parent 1c74dad3ea
commit 90821356fa

View File

@ -186,3 +186,8 @@ document.getElementById("request-status").onclick = async () => {
statusStatusEl.textContent = `Currently waiting, position in queue ${json.queue_position}`;
}
};
if (window.location.hash) {
uuid.value = window.location.hash.substring(1); // remove # from hash
document.getElementById("request-status").click();
}