From 7ea39316eaae1d7f47d3ba24b928d1af1e9f5a00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 22:34:44 +0000 Subject: [PATCH 1/2] Bump simple_form from 5.1.0 to 5.3.0 Bumps [simple_form](https://github.com/heartcombo/simple_form) from 5.1.0 to 5.3.0. - [Release notes](https://github.com/heartcombo/simple_form/releases) - [Changelog](https://github.com/heartcombo/simple_form/blob/main/CHANGELOG.md) - [Commits](https://github.com/heartcombo/simple_form/compare/v5.1.0...v5.3.0) --- updated-dependencies: - dependency-name: simple_form dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- Gemfile.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) mode change 100755 => 100644 Gemfile mode change 100755 => 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile old mode 100755 new mode 100644 index 23b61d0..4dbc6a4 --- a/Gemfile +++ b/Gemfile @@ -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" diff --git a/Gemfile.lock b/Gemfile.lock old mode 100755 new mode 100644 index 6172398..4b5cd0c --- a/Gemfile.lock +++ b/Gemfile.lock @@ -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) @@ -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) @@ -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 From cd3489898426fdcd1b841bee50211a3e39c0b639 Mon Sep 17 00:00:00 2001 From: Nils Bartels Date: Thu, 16 Nov 2023 22:14:12 +0100 Subject: [PATCH 2/2] minor cosmetical fixes --- app/views/projects/_form.html.haml | 2 +- app/views/projects/index.html.haml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index 3b9ab1d..dd3a064 100755 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -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' diff --git a/app/views/projects/index.html.haml b/app/views/projects/index.html.haml index ae77470..ae1b888 100755 --- a/app/views/projects/index.html.haml +++ b/app/views/projects/index.html.haml @@ -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|