Skip to content
This repository was archived by the owner on Jul 27, 2025. It is now read-only.

Commit 27133f6

Browse files
committed
Merge branch 'main' of github.com:maybe-finance/maybe into zachgoll/maybe-916-add-additional-details-to-balances-table-during-data-sync
2 parents 79f723c + 347c0a7 commit 27133f6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/UI/account/activity_feed.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<%= turbo_frame_tag dom_id(account, "entries") do %>
22
<div class="bg-container p-5 shadow-border-xs rounded-xl">
33
<div class="flex items-center justify-between mb-4" data-testid="activity-menu">
4-
<%= tag.h2 t(".title"), class: "font-medium text-lg" %>
4+
<%= tag.h2 "Activity", class: "font-medium text-lg" %>
55

66
<% if account.manual? %>
77
<%= render DS::Menu.new(variant: "button") do |menu| %>

app/views/transactions/_form.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<% if @entry.account_id %>
1919
<%= f.hidden_field :account_id %>
2020
<% else %>
21-
<%= f.collection_select :account_id, Current.family.accounts.manual.alphabetically, :id, :name, { prompt: t(".account_prompt"), label: t(".account") }, required: true, class: "form-field__input text-ellipsis" %>
21+
<%= f.collection_select :account_id, Current.family.accounts.manual.active.alphabetically, :id, :name, { prompt: t(".account_prompt"), label: t(".account") }, required: true, class: "form-field__input text-ellipsis" %>
2222
<% end %>
2323

2424
<%= f.money_field :amount, label: t(".amount"), required: true %>

0 commit comments

Comments
 (0)