fix: remover contagem de avaliacoes entre parenteses e exibir apenas a nota com a estrela

This commit is contained in:
2026-08-26 18:21:33 -03:00
parent 52c2ba90d6
commit 1513c65056
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ def render_kanban_board(leads: list, api_client: APIClient):
reviews = lead.get('total_avaliacoes', 0)
maps_url = lead.get('google_maps_url', '')
rating_str = f"{rating:.1f} ({reviews})" if rating > 0 else "Sem avaliação"
rating_str = f"{rating:.1f}" if rating > 0 else "Sem avaliação"
# Container visual do Card
with st.container(border=True):