mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
* Move accountable partials * Split accountables into separate view partials * Fix test * Add form to permitted partials * Fix failing system tests * Update new account modal views * New sync algorithm implementation * Update account system test assertions to match new behavior * Fix off by 1 date error * Revert new balance sync algorithm * Add missing account overviews
9 lines
292 B
Plaintext
9 lines
292 B
Plaintext
<%# locals: (account:, key:, is_selected:) %>
|
|
|
|
<%= link_to key.titleize,
|
|
account_path(account, tab: key),
|
|
class: [
|
|
"px-2 py-1.5 rounded-md border border-transparent",
|
|
"bg-white shadow-xs border-alpha-black-50": is_selected
|
|
] %>
|