diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index b13b5cb1..98c86602 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -21,7 +21,7 @@ module ApplicationHelper def currency_dropdown(f: nil, options: []) render partial: "shared/currency_dropdown", locals: { f: f, options: options } end - + def sidebar_link_to(name, path, options = {}) base_class_names = [ "block", "border", "border-transparent", "rounded-xl", "-ml-2", "p-2", "text-sm", "font-medium", "text-gray-500", "flex", "items-center" ] hover_class_names = [ "hover:bg-white", "hover:border-[#141414]/[0.07]", "hover:text-gray-900", "hover:shadow-xs" ] diff --git a/app/views/accounts/new.html.erb b/app/views/accounts/new.html.erb index 1c673495..b8a2d4c1 100644 --- a/app/views/accounts/new.html.erb +++ b/app/views/accounts/new.html.erb @@ -79,13 +79,10 @@ <%= form_field_tag do %> <%= f.label :original_balance, class: "form-field__label" %> <%= f.number_field :original_balance, step: :any, placeholder: number_to_currency(0), in: 0.00..100000000.00, required: 'required', class: 'form-field__input max-w-[80%]' %> - <%= currency_dropdown(f: f, options: ['USD', 'EUR', 'JPY', 'GBP', 'AUD', 'CAD', 'CNY', 'BTC', 'ETH']) %> + <%= currency_dropdown(f: f, options: Currency.all.order(:iso_code).pluck(:iso_code)) if Currency.count > 1 %> <% end %> - - <%#= f.collection_select :original_currency, Currency.all, :iso_code, :iso_code, { prompt: "Choose a currency", selected: Current.family.currency }, { required: 'required', label: "Base Currency" } %> - <%= f.submit "Add #{@account.accountable.model_name.human.downcase}" %> <% end %> <% end %> diff --git a/app/views/shared/_currency_dropdown.html.erb b/app/views/shared/_currency_dropdown.html.erb index 96ddfdc1..9d352f81 100644 --- a/app/views/shared/_currency_dropdown.html.erb +++ b/app/views/shared/_currency_dropdown.html.erb @@ -1,14 +1,14 @@