Add current user message in settings dialog (#1740)

This commit is contained in:
Chenlei Hu
2024-11-29 08:24:21 -08:00
committed by GitHub
parent ec824579d6
commit 7f5b685c9f
7 changed files with 33 additions and 1 deletions

View File

@@ -29,6 +29,7 @@
:value="category.label"
>
<template #header>
<CurrentUserMessage v-if="tabValue === 'Comfy'" />
<FirstTimeUIMessage v-if="tabValue === 'Comfy'" />
</template>
<SettingsPanel :settingGroups="sortedGroups(category)" />
@@ -74,6 +75,7 @@ import SettingsPanel from './setting/SettingsPanel.vue'
import PanelTemplate from './setting/PanelTemplate.vue'
import AboutPanel from './setting/AboutPanel.vue'
import FirstTimeUIMessage from './setting/FirstTimeUIMessage.vue'
import CurrentUserMessage from './setting/CurrentUserMessage.vue'
import { flattenTree } from '@/utils/treeUtil'
import { isElectron } from '@/utils/envUtil'