Fix bug with browser tab title

This commit is contained in:
Jacob Segal
2025-07-07 19:27:17 -07:00
parent f6c65d3fe7
commit f076a1c422

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
}
}