Files
sure/app/views/transactions/new.html.erb
ghost a0f5e56668 perf(transactions): preload new form options (#2189)
* perf(transactions): preload new form options

* refactor(transactions): reuse new form account scope
2026-06-06 17:11:01 +02:00

13 lines
485 B
Plaintext

<%= render DS::Dialog.new(scrollable: false, content_class: "lg:max-h-none lg:overflow-y-auto") do |dialog| %>
<% dialog.with_header(title: t(".new_transaction")) %>
<% dialog.with_body do %>
<%= render "form",
entry: @entry,
account_currencies: @account_currencies,
manual_accounts: @manual_accounts,
categories: @categories,
merchants: @merchants,
tags: @tags %>
<% end %>
<% end %>