Skip to content

Commit

Permalink
finish making things optional
Browse files Browse the repository at this point in the history
  • Loading branch information
cmayeux05 committed Feb 16, 2024
1 parent f9bcdc4 commit 5e748cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const DayDetailModal = ({
<Input.TextArea
onChange={e => setDescription(e.target.value)}
value={description}
required
//required
placeholder="Enter description"
></Input.TextArea>
</Form.Item>
Expand All @@ -186,7 +186,7 @@ const DayDetailModal = ({
onChange={e => setTekS(e.target.value)}
value={TekS}
className="input"
required
//required
placeholder="Enter tekS"
></Input>
</Form.Item>
Expand Down
4 changes: 2 additions & 2 deletions client/src/views/ContentCreator/LessonEditor/LessonEditor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ export default function LessonEditor({
onChange={e => setDescription(e.target.value)}
value={description}
rows={3}
// required
//required
placeholder="Enter lesson description"
/>
</Form.Item>
<Form.Item id="form-label" label="Teks">
<Input
onChange={e => setTeks(e.target.value)}
value={teks}
// required
//required
placeholder="Enter lesson teks"
/>
</Form.Item>
Expand Down

0 comments on commit 5e748cc

Please sign in to comment.