mirror of
https://github.com/we-promise/sure.git
synced 2026-07-19 00:05:23 +00:00
* perf(transactions): preload new form options * refactor(transactions): reuse new form account scope
13 lines
485 B
Plaintext
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 %>
|