Spaces:
Running
Running
Update components/ui_components.py
Browse files
components/ui_components.py
CHANGED
|
@@ -162,7 +162,7 @@ def render_progress_bar(stats):
|
|
| 162 |
total_feedback = stats.get("total_feedback", 0)
|
| 163 |
progress_percent = min((total_feedback / target_feedback) * 100, 100)
|
| 164 |
st.progress(progress_percent / 100)
|
| 165 |
-
st.caption(f"Goal:
|
| 166 |
|
| 167 |
if total_feedback >= target_feedback:
|
| 168 |
st.balloons()
|
|
|
|
| 162 |
total_feedback = stats.get("total_feedback", 0)
|
| 163 |
progress_percent = min((total_feedback / target_feedback) * 100, 100)
|
| 164 |
st.progress(progress_percent / 100)
|
| 165 |
+
st.caption(f"Goal: 1000 feedback points • {total_feedback}/1000")
|
| 166 |
|
| 167 |
if total_feedback >= target_feedback:
|
| 168 |
st.balloons()
|