mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-18 20:59:39 +02:00
* Preserve transaction filters across page visits * Preserve params when per_page is updated * Autofocus selected transactions * Lint fixes * Fix syntax error * Fix filter clearing * Update e2e tests for new UI * Consolidate focus behavior into concern * Lint fixes
7 lines
453 B
Text
7 lines
453 B
Text
<%= render "accounts/show/template",
|
|
account: @account,
|
|
header: render("accounts/show/header", account: @account, subtitle: @account.property.address),
|
|
tabs: render("accounts/show/tabs", account: @account, tabs: [
|
|
{ key: "activity", contents: render("accounts/show/activity", account: @account) },
|
|
{ key: "overview", contents: render("properties/overview", account: @account) },
|
|
]) %>
|