mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 02:54:10 +00:00
* Improvements - Fix button visibility in reports on light theme - Unify logic for provider syncs - Add default option is to skip accounts linking ( no op default ) * Stability fixes and UX improvements * FIX add unlinking when deleting lunch flow connection as well * Wrap updates in transaction * Some more improvements * FIX proper provider setup check * Make provider section collapsible * Fix balance calculation * Restore focus ring * Use browser default focus * Fix lunch flow balance for credit cards
18 lines
588 B
Plaintext
18 lines
588 B
Plaintext
<%# locals: (accounts:) %>
|
|
|
|
<details open class="group bg-container p-4 shadow-border-xs rounded-xl">
|
|
<summary class="flex items-center gap-2">
|
|
<%= icon("chevron-right", class: "group-open:transform group-open:rotate-90") %>
|
|
|
|
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-black/5">
|
|
<%= icon("folder-pen") %>
|
|
</div>
|
|
|
|
<span class="mr-auto text-sm font-medium text-primary"><%= t(".other_accounts") %></span>
|
|
</summary>
|
|
|
|
<div class="space-y-4 mt-4">
|
|
<%= render "accounts/index/account_groups", accounts: accounts %>
|
|
</div>
|
|
</details>
|