fix(web): improve the consistency of the inputs-form UI (#27837)

This commit is contained in:
yangzheli
2025-11-05 09:29:13 +08:00
committed by GitHub
parent 34be16874f
commit f31b821cc0
25 changed files with 12 additions and 30 deletions

View File

@@ -49,7 +49,7 @@ const InputsFormContent = ({ showTip }: Props) => {
<div className='flex h-6 items-center gap-1'>
<div className='system-md-semibold text-text-secondary'>{form.label}</div>
{!form.required && (
<div className='system-xs-regular text-text-tertiary'>{t('appDebug.variableTable.optional')}</div>
<div className='system-xs-regular text-text-tertiary'>{t('workflow.panel.optional')}</div>
)}
</div>
)}