From 89d8d4e2097fa7175fe4367d4476390047f895dd Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 24 Jan 2024 12:10:35 -0800 Subject: [PATCH] (ui) spend per user --- ui/admin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/admin.py b/ui/admin.py index 53c1d0532..96da791df 100644 --- a/ui/admin.py +++ b/ui/admin.py @@ -272,10 +272,10 @@ def spend_per_user(): top_10_df, x="user_id", y="spend", - title="Top 10 Spend per Key", + title="Top 10 Spend per User", height=550, # Adjust the height width=1200, # Adjust the width) - # hover_data=["token", "spend", "user_id", "team_id"], + hover_data=["user_id", "spend", "max_budget"], ) st.plotly_chart(fig)