2 Commits

Author SHA1 Message Date
dependabot[bot]
e9ebd8efb5 Bump sorbet from 0.6.13067 to 0.6.13143
Bumps [sorbet](https://github.com/sorbet/sorbet) from 0.6.13067 to 0.6.13143.
- [Release notes](https://github.com/sorbet/sorbet/releases)
- [Commits](https://github.com/sorbet/sorbet/commits)

---
updated-dependencies:
- dependency-name: sorbet
  dependency-version: 0.6.13143
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-18 08:25:18 +00:00
fab5ad5982 Fixes default values on new games page 2026-04-13 08:36:32 -04:00
2 changed files with 12 additions and 24 deletions

View File

@@ -122,8 +122,6 @@ GEM
tzinfo tzinfo
ffi (1.17.4-aarch64-linux-gnu) ffi (1.17.4-aarch64-linux-gnu)
ffi (1.17.4-aarch64-linux-musl) ffi (1.17.4-aarch64-linux-musl)
ffi (1.17.4-arm-linux-gnu)
ffi (1.17.4-arm-linux-musl)
ffi (1.17.4-arm64-darwin) ffi (1.17.4-arm64-darwin)
ffi (1.17.4-x86_64-darwin) ffi (1.17.4-x86_64-darwin)
ffi (1.17.4-x86_64-linux-gnu) ffi (1.17.4-x86_64-linux-gnu)
@@ -216,10 +214,6 @@ GEM
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.19.2-aarch64-linux-musl) nokogiri (1.19.2-aarch64-linux-musl)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.19.2-arm-linux-gnu)
racc (~> 1.4)
nokogiri (1.19.2-arm-linux-musl)
racc (~> 1.4)
nokogiri (1.19.2-arm64-darwin) nokogiri (1.19.2-arm64-darwin)
racc (~> 1.4) racc (~> 1.4)
nokogiri (1.19.2-x86_64-darwin) nokogiri (1.19.2-x86_64-darwin)
@@ -368,15 +362,15 @@ GEM
fugit (~> 1.11) fugit (~> 1.11)
railties (>= 7.1) railties (>= 7.1)
thor (>= 1.3.1) thor (>= 1.3.1)
sorbet (0.6.13067) sorbet (0.6.13143)
sorbet-static (= 0.6.13067) sorbet-static (= 0.6.13143)
sorbet-runtime (0.6.13067) sorbet-runtime (0.6.13143)
sorbet-static (0.6.13067-aarch64-linux) sorbet-static (0.6.13143-aarch64-linux)
sorbet-static (0.6.13067-universal-darwin) sorbet-static (0.6.13143-universal-darwin)
sorbet-static (0.6.13067-x86_64-linux) sorbet-static (0.6.13143-x86_64-linux)
sorbet-static-and-runtime (0.6.13067) sorbet-static-and-runtime (0.6.13143)
sorbet (= 0.6.13067) sorbet (= 0.6.13143)
sorbet-runtime (= 0.6.13067) sorbet-runtime (= 0.6.13143)
spoom (1.7.11) spoom (1.7.11)
erubi (>= 1.10.0) erubi (>= 1.10.0)
prism (>= 0.28.0) prism (>= 0.28.0)
@@ -456,8 +450,6 @@ PLATFORMS
aarch64-linux aarch64-linux
aarch64-linux-gnu aarch64-linux-gnu
aarch64-linux-musl aarch64-linux-musl
arm-linux-gnu
arm-linux-musl
arm64-darwin arm64-darwin
x86_64-darwin x86_64-darwin
x86_64-linux x86_64-linux

View File

@@ -89,7 +89,7 @@
<div> <div>
<%= f.label :format, class: "block text-sm font-medium text-gray-700" %> <%= f.label :format, class: "block text-sm font-medium text-gray-700" %>
<%= f.select :format, [["Physical", "physical"], ["Digital", "digital"]], { prompt: "Select Format" }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %> <%= f.select :format, [["Physical", "physical"], ["Digital", "digital"]], { prompt: "Select Format", selected: 'physical' }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %>
</div> </div>
<div> <div>
@@ -99,7 +99,7 @@
<div> <div>
<%= f.label :completion_status, class: "block text-sm font-medium text-gray-700" %> <%= f.label :completion_status, class: "block text-sm font-medium text-gray-700" %>
<%= f.select :completion_status, [["Backlog", "backlog"], ["Currently Playing", "currently_playing"], ["Completed", "completed"], ["On Hold", "on_hold"], ["Not Playing", "not_playing"]], { include_blank: "Select Status" }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %> <%= f.select :completion_status, [["Backlog", "backlog"], ["Currently Playing", "currently_playing"], ["Completed", "completed"], ["On Hold", "on_hold"], ["Not Playing", "not_playing"]], { prompt: "Select Status", selected: "backlog" }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %>
</div> </div>
<div> <div>
@@ -123,7 +123,7 @@
<div class="grid grid-cols-1 md:grid-cols-3 gap-6"> <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div> <div>
<%= f.label :condition, class: "block text-sm font-medium text-gray-700" %> <%= f.label :condition, class: "block text-sm font-medium text-gray-700" %>
<%= f.select :condition, [["CIB (Complete in Box)", "cib"], ["Loose", "loose"], ["Sealed", "sealed"], ["Good", "good"], ["Fair", "fair"]], { include_blank: "Select Condition" }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %> <%= f.select :condition, [["CIB (Complete in Box)", "cib"], ["Loose", "loose"], ["Sealed", "sealed"], ["Good", "good"], ["Fair", "fair"]], { prompt: "Select Condition", selected: "loose" }, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %>
</div> </div>
<div> <div>
@@ -180,10 +180,6 @@
<p class="mt-1 text-xs text-gray-500">Start typing to see previously used stores</p> <p class="mt-1 text-xs text-gray-500">Start typing to see previously used stores</p>
</div> </div>
<div>
<%= f.label :price_paid, class: "block text-sm font-medium text-gray-700" %>
<%= f.number_field :price_paid, step: 0.01, class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %>
</div>
</div> </div>
</div> </div>