mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
- fix overlay bullet spacing
- fix auto root category selection
This commit is contained in:
@@ -132,6 +132,10 @@ const rootFilter = ref<string | null>(null)
|
||||
|
||||
const rootFilterLabel = computed(() => {
|
||||
switch (rootFilter.value) {
|
||||
case BLUEPRINT_CATEGORY:
|
||||
return t('g.blueprints')
|
||||
case 'partner-nodes':
|
||||
return t('g.partnerNodes')
|
||||
case 'essentials':
|
||||
return t('g.essentials')
|
||||
case 'custom':
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
<span
|
||||
v-for="val in selectedInputValues.slice(0, 4)"
|
||||
:key="val"
|
||||
class="text-lg leading-none -mx-[4px]"
|
||||
class="text-lg leading-none -mx-[2px]"
|
||||
:style="{ color: getLinkTypeColor(val) }"
|
||||
>•</span
|
||||
>
|
||||
@@ -75,7 +75,7 @@
|
||||
<span
|
||||
v-for="val in selectedOutputValues.slice(0, 4)"
|
||||
:key="val"
|
||||
class="text-lg leading-none -mx-[4px]"
|
||||
class="text-lg leading-none -mx-[2px]"
|
||||
:style="{ color: getLinkTypeColor(val) }"
|
||||
>•</span
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user