mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 03:01:54 +00:00
Fix bug with browser tab title
This commit is contained in:
@@ -274,10 +274,11 @@ export const useExecutionStore = defineStore('execution', () => {
|
|||||||
if (!activePrompt.value) return
|
if (!activePrompt.value) return
|
||||||
|
|
||||||
// Update the executing nodes list
|
// Update the executing nodes list
|
||||||
if (e.detail === null) {
|
if (typeof e.detail !== 'string') {
|
||||||
if (activePromptId.value) {
|
if (activePromptId.value) {
|
||||||
delete queuedPrompts.value[activePromptId.value]
|
delete queuedPrompts.value[activePromptId.value]
|
||||||
}
|
}
|
||||||
|
activePromptId.value = null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user