Fix bug with browser tab title

This commit is contained in:
Jacob Segal
2025-07-07 19:27:17 -07:00
committed by bymyself
parent 6a37c94d26
commit 892611be5f

View File

@@ -274,10 +274,11 @@ export const useExecutionStore = defineStore('execution', () => {
if (!activePrompt.value) return
// Update the executing nodes list
if (e.detail === null) {
if (typeof e.detail !== 'string') {
if (activePromptId.value) {
delete queuedPrompts.value[activePromptId.value]
}
activePromptId.value = null
}
}