Skip to content

Commit c7ae80a

Browse files
committed
added default checked - 103
1 parent 9bba9d8 commit c7ae80a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devU-client/src/components/pages/forms/assignments/assignmentFormPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,12 @@ const AddAssignmentModal = ({ open, onClose }: Props) => {
189189
<input type='date' id="end_date" value={endDate} onChange={handleEndDateChange} />
190190
</div>
191191
</div>
192-
<label htmlFor="disableHandins">Disable Submissions?<input type="checkbox" id="disableHandins" /></label>
193192
<div className="input-subgroup-2col" style={{justifyContent: 'flex-start'}}>
194193
<span>Select submission for final score:</span>
195-
<label htmlFor="subRecent"><input type="radio" id="subRecent" name="submissionChoice"/>Most Recent</label>
194+
<label htmlFor="subRecent"><input type="radio" id="subRecent" name="submissionChoice" defaultChecked/>Most Recent</label>
196195
<label htmlFor="subHighest"><input type="radio" id="subHighest" name="submissionChoice"/>Highest Score</label>
197196
</div>
197+
<label htmlFor="disableHandins">Disable Submissions?<input type="checkbox" id="disableHandins" /></label>
198198
</Modal>
199199
)
200200
}

0 commit comments

Comments
 (0)