fix failed task tab state binding

This commit is contained in:
bymyself
2025-06-21 17:31:01 -07:00
committed by Jin Yi
parent 1f9062e4e4
commit 23f4e9a2d4
2 changed files with 3 additions and 10 deletions

View File

@@ -18,15 +18,13 @@
<script setup lang="ts">
import TabMenu from 'primevue/tabmenu'
import { computed } from 'vue'
import { ref } from 'vue'
import { useI18n } from 'vue-i18n'
import { useManagerProgressDialogStore } from '@/stores/comfyManagerStore'
const progressDialogContent = useManagerProgressDialogStore()
const activeTabIndex = computed(() => {
return progressDialogContent.getActiveTabIndex()
})
const activeTabIndex = ref(0)
const { t } = useI18n()
const tabs = [
{ label: t('manager.installationQueue') },