feat: fix checkbox colors for feedback (#244)
This commit is contained in:
@@ -43,7 +43,7 @@ export const GroupFeedbackRow = ({
|
||||
className="mr-4 mt-1"
|
||||
value={letter.id}
|
||||
checked={value.answers.indexOf(letter.id)}
|
||||
isValid={value.answers.indexOf(letter.id)}
|
||||
isValid={value.answers.indexOf(letter.id) >= 0}
|
||||
>{letter.id}
|
||||
</Form.Checkbox>
|
||||
))}
|
||||
|
||||
@@ -37,22 +37,22 @@ exports[`GroupFeedbackRow snapshot snapshot: renders hints row 1`] = `
|
||||
<Form.Checkbox
|
||||
checked={-1}
|
||||
className="mr-4 mt-1"
|
||||
isValid={-1}
|
||||
isValid={false}
|
||||
/>
|
||||
<Form.Checkbox
|
||||
checked={-1}
|
||||
className="mr-4 mt-1"
|
||||
isValid={-1}
|
||||
isValid={false}
|
||||
/>
|
||||
<Form.Checkbox
|
||||
checked={-1}
|
||||
className="mr-4 mt-1"
|
||||
isValid={-1}
|
||||
isValid={false}
|
||||
/>
|
||||
<Form.Checkbox
|
||||
checked={-1}
|
||||
className="mr-4 mt-1"
|
||||
isValid={-1}
|
||||
isValid={false}
|
||||
/>
|
||||
</Row>
|
||||
</Component>
|
||||
|
||||
Reference in New Issue
Block a user