chore: fix style of variable input in workflow

This commit is contained in:
Rain 2023-10-21 11:44:41 +08:00
parent 75f97e7e0c
commit 2ec3130f46

View File

@ -96,7 +96,7 @@ const ConstantTypes = {
value: 'null',
component: function NullComponent() {
const { t } = useTranslation();
return <AntInput readOnly placeholder={t('Null')} className="null-value" />;
return <AntInput style={{ width: '100%' }} readOnly placeholder={t('Null')} className="null-value" />;
},
default: null,
},