mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 04:24:06 +00:00
An overhaul and cleanup of the transactions feature including: - Simplification of transactions search and filtering - Consolidation of account sync logic after transaction change - Split sidebar modal and modal into "drawer" and "modal" concepts - Refactor of transaction partials and folder organization - Cleanup turbo frames and streams for transaction updates, including new Transactions::RowsController for inline updates - Refactored and added several integration and systems tests
12 lines
470 B
Plaintext
12 lines
470 B
Plaintext
<%= render partial: "transactions/searches/form", locals: { transactions: transactions } %>
|
|
|
|
<ul id="transaction-search-filters" class="flex items-center flex-wrap gap-2">
|
|
<% @q.each do |param_key, param_value| %>
|
|
<% unless param_value.blank? %>
|
|
<% Array(param_value).each do |value| %>
|
|
<%= render partial: "transactions/searches/filters/badge", locals: { param_key: param_key, param_value: value } %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|