Skip to content
New issue

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

Bump simple_form from 5.1.0 to 5.3.0 #1

Merged
merged 2 commits into from
Nov 16, 2023
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 Gemfile
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ gem "rubocop", require: false
gem "rubocop-rails", require: false
gem "rubocop-rails_config"
gem "sass-rails"
gem "simple_form", "~> 5.1.0"
gem "simple_form", "~> 5.3.0"
6 changes: 3 additions & 3 deletions Gemfile.lock
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ GEM
kaminari-core (= 1.2.2)
kaminari-core (1.2.2)
language_server-protocol (3.17.0.3)
loofah (2.21.4)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
Expand Down Expand Up @@ -322,7 +322,7 @@ GEM
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
simple_form (5.1.0)
simple_form (5.3.0)
actionpack (>= 5.2)
activemodel (>= 5.2)
sprockets (4.2.1)
Expand Down Expand Up @@ -396,7 +396,7 @@ DEPENDENCIES
rubocop-rails_config
sass-rails
selenium-webdriver
simple_form (~> 5.1.0)
simple_form (~> 5.3.0)
sprockets-rails
stimulus-rails
turbo-rails
Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/_form.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
= f.input :description
= f.association :user, label_method: :email
= f.input :parent_id, collection: Project.all, label_method: :shorthandle, value_method: :id
= f.input :custom_id
= f.input :custom_id, label: 'Custom id'

= f.button :submit, class: 'btn btn-success'
4 changes: 2 additions & 2 deletions app/views/projects/index.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
%th Shorthandle
%th Custom id
%th Name
%th belongs to user
%th is child of
%th Owner
%th Parent project
%th
%tbody
- @projects.each do |project|
Expand Down