Skip to content

Commit 7045807

Browse files
committed
Fixed more bugs with the never and on button
1 parent 074bfd8 commit 7045807

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

frontend/src/components/pages/tasks/TaskModal.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -206,21 +206,21 @@ const TaskModal = ({ isOpen, setIsOpen }: Props): React.ReactElement => {
206206

207207
<Flex flexDir='column'>
208208
<h6 style={{ marginBottom: '8px' }}>Ends On</h6>
209-
<label htmlFor="freqDays">
209+
<label htmlFor="endsOn">
210210
<input
211211
type="radio"
212-
id="freqDays"
213-
name="option"
212+
id="endsOn"
213+
name="option2"
214214
style={{ marginRight: '8px' }}
215215
/>
216216
Never
217217
</label>
218218
<Flex flexDir='row'>
219-
<label htmlFor="freqDays">
219+
<label htmlFor="endsOn2">
220220
<input
221221
type="radio"
222-
id="freqDays"
223-
name="option"
222+
id="endsOn2"
223+
name="option2"
224224
style={{ marginRight: '8px' }}
225225
/>
226226
On

0 commit comments

Comments
 (0)