We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6e01c commit 6fddfefCopy full SHA for 6fddfef
customer_data_app/customer_data/components/stats_cards.py
@@ -62,12 +62,12 @@ def stats_card(
62
),
63
rx.hstack(
64
rx.heading(
65
- f"{extra_char}{value:,}",
+ f"{extra_char}{value}",
66
size="7",
67
weight="bold",
68
69
rx.text(
70
- f"from {extra_char}{prev_value:,}",
+ f"from {extra_char}{prev_value}",
71
size="3",
72
color=rx.color("gray", 10),
73
customer_data_app/customer_data/views/table.py
@@ -12,7 +12,7 @@ def show_customer(user: Customer):
12
rx.table.cell(user.email),
13
rx.table.cell(user.phone),
14
rx.table.cell(user.address),
15
- rx.table.cell(f"${user.payments:,}"),
+ rx.table.cell(f"${user.payments}"),
16
rx.table.cell(user.date),
17
rx.table.cell(
18
rx.match(
0 commit comments