Skip to content

Commit 0144d35

Browse files
committed
Add class to radio option labels
1 parent 432c7c2 commit 0144d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export function FormRadioInput({label, help_text, error, value, options, ...prop
9494
}
9595

9696
return (
97-
<label key={title + '_' + inputValue + '_' + i}>
97+
<label className="rjf-radio-option" key={title + '_' + inputValue + '_' + i}>
9898
<input {...props} value={inputValue} checked={inputValue === value} /> {title}
9999
</label>
100100
);

0 commit comments

Comments
 (0)