mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-21 14:59:39 +00:00
[Style] Hide deprecated settings on UI (#3688)
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
}}
|
||||
</h3>
|
||||
<div
|
||||
v-for="setting in group.settings"
|
||||
v-for="setting in group.settings.filter((s) => !s.deprecated)"
|
||||
:key="setting.id"
|
||||
class="setting-item mb-4"
|
||||
>
|
||||
|
||||
@@ -18,11 +18,6 @@
|
||||
<i-material-symbols:experiment-outline />
|
||||
</template>
|
||||
</Tag>
|
||||
<Tag
|
||||
v-if="setting.deprecated"
|
||||
:value="$t('g.deprecated')"
|
||||
severity="danger"
|
||||
/>
|
||||
</template>
|
||||
</FormItem>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user