mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-08-03 07:26:31 +08:00
Fix delete sometimes not properly refreshing queue state.
This commit is contained in:
@@ -534,7 +534,7 @@ document.addEventListener('paste', e=>{
|
||||
}
|
||||
});
|
||||
|
||||
function deleteQueueElement(delete_id) {
|
||||
function deleteQueueElement(delete_id, then) {
|
||||
fetch('/queue', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
@@ -544,6 +544,7 @@ function deleteQueueElement(delete_id) {
|
||||
})
|
||||
.then(data => {
|
||||
console.log(data);
|
||||
then();
|
||||
})
|
||||
.catch(error => console.error(error))
|
||||
}
|
||||
@@ -586,8 +587,7 @@ function loadQueue() {
|
||||
button.style.fontSize = "10px";
|
||||
button.delete_id = id;
|
||||
button.onclick = function(event) {
|
||||
deleteQueueElement(event.target.delete_id);
|
||||
loadQueue();
|
||||
deleteQueueElement(event.target.delete_id, loadQueue);
|
||||
};
|
||||
append_to_element.appendChild(button);
|
||||
}
|
||||
|
Reference in New Issue
Block a user