mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-26 09:19:43 +00:00
Fix manager info panel metadata text (#2971)
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="flex py-1.5 text-xs">
|
<div class="flex py-1.5 text-xs">
|
||||||
<div class="w-1/3 text-color-secondary truncate pr-2 text-muted">
|
<div class="w-1/3 truncate pr-2 text-muted">{{ label }}:</div>
|
||||||
{{ label }}:
|
|
||||||
</div>
|
|
||||||
<div class="w-2/3">
|
<div class="w-2/3">
|
||||||
<slot>{{ value }}</slot>
|
<slot>{{ value }}</slot>
|
||||||
</div>
|
</div>
|
||||||
@@ -10,7 +8,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
const { value = 'N/A' } = defineProps<{
|
const { value = 'N/A', label = 'N/A' } = defineProps<{
|
||||||
label: string
|
label: string
|
||||||
value?: string | number
|
value?: string | number
|
||||||
}>()
|
}>()
|
||||||
|
|||||||
Reference in New Issue
Block a user