We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4513dd commit 449d061Copy full SHA for 449d061
src/components/Dialogs/MetadataForm.tsx
@@ -52,7 +52,10 @@ export function MetadataForm({
52
/>
53
<Label for={'displayName'}>{t('CreateProjectWorkspaceDialog.displayNameLabel')}</Label>
54
<Input id="displayName" {...register('displayName')} className={styles.input} />
55
- <Label for={'chargingTargetType'}>{t('CreateProjectWorkspaceDialog.chargingTargetTypeLabel')}</Label>
+
56
+ <div>
57
+ <Label for={'chargingTargetType'}>{t('CreateProjectWorkspaceDialog.chargingTargetTypeLabel')}</Label>
58
+ </div>
59
<Select id={'chargingTargetType'} className={styles.input} onChange={handleChargingTargetTypeChange}>
60
{chargingTypes.map((option) => (
61
<Option key={option.value} data-value={option.value}>
0 commit comments