We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
classes in FormGroup component is being applied to wrong element causing it to have no effect.
code:
<FormGroup inline={true} check={true}> <Input id="r1" type="radio" bind:group={mode} value="create" label="Create" /> <Input id="r2" type="radio" bind:group={mode} value="update" label="Update" /> </FormGroup>
dom:
as you can see, .form-check-inline class should be on child .form-check div
.form-check-inline
.form-check div
bootstrap docs ref: https://getbootstrap.com/docs/5.3/forms/checks-radios/#inline
workaround:
<FormCheck inline={true} type={'radio'} name={"mode"} label={'Create'} value={'create'} /> <FormCheck inline={true} type={'radio'} name={"mode"} label={'Update'} value={'update'} />
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
classes in FormGroup component is being applied to wrong element causing it to have no effect.
code:
dom:
as you can see,
.form-check-inline
class should be on child.form-check div
bootstrap docs ref: https://getbootstrap.com/docs/5.3/forms/checks-radios/#inline
workaround:
Thanks
The text was updated successfully, but these errors were encountered: