Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .yarnrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# yarn lockfile v1


lastUpdateCheck 1761241670837
lastUpdateCheck 1761521327441
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1732,8 +1732,8 @@ Generated HTML:
<input class="form-control" id="address_street" name="address[street]" type="text" value="Foo">
</div>
<div class="mb-3">
<label class="form-label" for="address_city">City</label>
<input class="form-control" id="address_city" name="address[city]" type="text">
<label class="form-label required" for="address_city">City</label>
<input class="form-control" id="address_city" name="address[city]" required="required" type="text">
</div>
<div class="mb-3">
<label class="form-label" for="address_state">State</label>
Expand Down
Binary file modified demo/doc/screenshots/bootstrap/readme/54_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion lib/bootstrap_form/form_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class FormBuilder < ActionView::Helpers::FormBuilder
include BootstrapForm::Inputs::PhoneField
include BootstrapForm::Inputs::RadioButton
include BootstrapForm::Inputs::RangeField
include BootstrapForm::Inputs::RichTextArea
include BootstrapForm::Inputs::RichTextArea if Gem.loaded_specs["actiontext"]
include BootstrapForm::Inputs::SearchField
include BootstrapForm::Inputs::Select
include BootstrapForm::Inputs::Submit
Expand Down