- fix overlay bullet spacing

- fix auto root category selection
This commit is contained in:
pythongosssss
2026-02-25 06:52:45 -08:00
parent 9435c1b2c3
commit edd99ead6d
2 changed files with 6 additions and 2 deletions

View File

@@ -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':

View File

@@ -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) }"
>&bull;</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) }"
>&bull;</span
>