Skip to content

Commit fe0566e

Browse files
committed
Add transaction_id to 50k dashboard
1 parent e212992 commit fe0566e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/web.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ def landing_page():
7070
else:
7171
# Select key columns for display
7272
display_cols = [
73-
"expenditure_date", "expenditure_amount", "committee_name",
74-
"payee_name", "expenditure_description"
73+
"transaction_id", "expenditure_date", "expenditure_amount",
74+
"committee_name", "payee_name", "expenditure_description"
7575
]
7676
display_df = df[[c for c in display_cols if c in df.columns]].copy()
7777
display_df["expenditure_amount"] = display_df["expenditure_amount"].apply(

0 commit comments

Comments
 (0)