Skip to content

Commit

Permalink
addressed nits
Browse files Browse the repository at this point in the history
  • Loading branch information
salonig23 committed Aug 15, 2024
1 parent 1105cdf commit 1981395
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions webui/react/src/components/WorkspaceCreateModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -252,11 +252,12 @@ const WorkspaceCreateModalComponent: React.FC<Props> = ({ onClose, workspaceId }
Resource Quotas
<>
{resourceManagers.map((name) => (
<Fragment key={name}>
<Form.Item label={`Cluster Name: ${name}`} name={['resourceQuotas', name]}>
<Input disabled={true} />
</Form.Item>
</Fragment>
<Form.Item
key={name}
label={`Cluster Name: ${name}`}
name={['resourceQuotas', name]}>
<Input disabled />
</Form.Item>
))}
</>
</>
Expand Down

0 comments on commit 1981395

Please sign in to comment.