Skip to content

Commit

Permalink
show transaction note
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Dec 14, 2023
1 parent c63585e commit f3faf2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/TransactionCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
type Transaction,
firstName
} from "$lib/utils";
import PostingNote from "./PostingNote.svelte";
import PostingStatus from "./PostingStatus.svelte";
import TransactionNote from "./TransactionNote.svelte";
export let t: Transaction;
let posting: Posting;
Expand All @@ -23,7 +23,7 @@
<div class="is-flex is-justify-content-space-between is-align-items-baseline">
<div class="has-text-grey is-size-7 truncate">
<PostingStatus {posting} />
<PostingNote {posting} />
<TransactionNote transaction={t} />
<a class="secondary-link" href={postingUrl(posting)}>{posting.payee}</a>
</div>
<div class="has-text-grey min-w-[110px] has-text-right">
Expand Down

0 comments on commit f3faf2f

Please sign in to comment.