From fab5ad59827f4c29870a40d9e4335575da7b9f29 Mon Sep 17 00:00:00 2001 From: Ryan Kazokas Date: Mon, 13 Apr 2026 08:36:32 -0400 Subject: [PATCH] Fixes default values on new games page --- app/views/games/_form.html.erb | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/app/views/games/_form.html.erb b/app/views/games/_form.html.erb index f5def59..f406583 100644 --- a/app/views/games/_form.html.erb +++ b/app/views/games/_form.html.erb @@ -89,7 +89,7 @@
<%= 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" %>
@@ -99,7 +99,7 @@
<%= 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" %>
@@ -123,7 +123,7 @@
<%= 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" %>
@@ -180,10 +180,6 @@

Start typing to see previously used stores

-
- <%= 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" %> -