Skip to content

Commit

Permalink
fix: desc name
Browse files Browse the repository at this point in the history
  • Loading branch information
HuberTRoy committed Dec 13, 2023
1 parent 370280e commit 2f8e626
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/studio/Project/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ const Project: React.FC = () => {
<Form.Item label="Version" name="version" rules={[{ required: true }]}>
<Input size="large" placeholder="Enter version"></Input>
</Form.Item>
<Form.Item label="Deployment Description" name="deploymentDesc" rules={[{ required: true }]}>
<Form.Item label="Deployment Description" name="description" rules={[{ required: true }]}>
<Markdown
value={form.getFieldValue('deploymentDesc')}
value={form.getFieldValue('description')}
onChange={(e) => {
form.setFieldValue('deploymentDesc', e);
form.setFieldValue('description', e);
}}
></Markdown>
</Form.Item>
Expand Down

0 comments on commit 2f8e626

Please sign in to comment.