Skip to content

Commit 449d061

Browse files
committed
Update MetadataForm.tsx
1 parent b4513dd commit 449d061

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/components/Dialogs/MetadataForm.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ export function MetadataForm({
5252
/>
5353
<Label for={'displayName'}>{t('CreateProjectWorkspaceDialog.displayNameLabel')}</Label>
5454
<Input id="displayName" {...register('displayName')} className={styles.input} />
55-
<Label for={'chargingTargetType'}>{t('CreateProjectWorkspaceDialog.chargingTargetTypeLabel')}</Label>
55+
56+
<div>
57+
<Label for={'chargingTargetType'}>{t('CreateProjectWorkspaceDialog.chargingTargetTypeLabel')}</Label>
58+
</div>
5659
<Select id={'chargingTargetType'} className={styles.input} onChange={handleChargingTargetTypeChange}>
5760
{chargingTypes.map((option) => (
5861
<Option key={option.value} data-value={option.value}>

0 commit comments

Comments
 (0)