@@ -83,7 +83,7 @@ export default function AccountLine({ data, spacing }: Props) {
) : (
-
+
)}
@@ -93,7 +93,8 @@ export default function AccountLine({ data, spacing }: Props) {
{isShow &&
Object.keys(data.children)
.sort()
- .map((child) =>
)}
+ .map((child) =>
)}
>
);
}
diff --git a/frontend/src/components/Amount.tsx b/frontend/src/components/Amount.tsx
index 43cdae05..cb97b520 100644
--- a/frontend/src/components/Amount.tsx
+++ b/frontend/src/components/Amount.tsx
@@ -34,10 +34,12 @@ export default function Amount({ amount, currency, negative, mask, className }:
const displayedValue = value.abs().toFormat(commodity?.precision ?? 2);
const maskedValue = shouldMask ? displayedValue.replace(/\d/g, '*') : displayedValue;
return (
-
+
{isNegative && -}
{commodity?.prefix}
+
+
{maskedValue}
{commodity?.suffix && {commodity?.suffix}}
diff --git a/frontend/src/components/ReportGraph.tsx b/frontend/src/components/ReportGraph.tsx
index e41cdc3e..4b9d45f9 100644
--- a/frontend/src/components/ReportGraph.tsx
+++ b/frontend/src/components/ReportGraph.tsx
@@ -59,7 +59,8 @@ export default function ReportGraph(props: Props) {
-
+
} />
@@ -67,7 +68,8 @@ export default function ReportGraph(props: Props) {
-
+
>
diff --git a/frontend/src/components/journalLines/tableView/TableViewTransactionLine.tsx b/frontend/src/components/journalLines/tableView/TableViewTransactionLine.tsx
index 85cbdbcb..3c2341f3 100644
--- a/frontend/src/components/journalLines/tableView/TableViewTransactionLine.tsx
+++ b/frontend/src/components/journalLines/tableView/TableViewTransactionLine.tsx
@@ -51,7 +51,8 @@ export default function TableViewTransactionLine({ data }: Props) {
const summary = calculate(data);
const hasDocuments = data.metas.some((meta) => meta.key === 'document');
return (
-
+
{time}
@@ -63,13 +64,15 @@ export default function TableViewTransactionLine({ data }: Props) {
{data.links &&
data.links.map((it) => (
- handleLinkClick(it)()}>
+ handleLinkClick(it)()}>
^{it}
))}
{data.tags &&
data.tags.map((tag) => (
- handleTagClick(tag)()}>
+ handleTagClick(tag)()}>
#{tag}
))}
@@ -77,7 +80,7 @@ export default function TableViewTransactionLine({ data }: Props) {