[Style] Use icon for experimental setting tag (#3687)

This commit is contained in:
Chenlei Hu
2025-04-29 15:59:40 -04:00
committed by GitHub
parent 30ce4a243d
commit b4731637d4

View File

@@ -7,7 +7,17 @@
>
<template #name-prefix>
<Tag v-if="setting.id === 'Comfy.Locale'" class="pi pi-language" />
<Tag v-if="setting.experimental" :value="$t('g.experimental')" />
<Tag
v-if="setting.experimental"
v-tooltip="{
value: $t('g.experimental'),
showDelay: 600
}"
>
<template #icon>
<i-material-symbols:experiment-outline />
</template>
</Tag>
<Tag
v-if="setting.deprecated"
:value="$t('g.deprecated')"