Skip to content

Commit

Permalink
fixed model error icon in teams
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaKerman committed Oct 20, 2024
1 parent df2fd55 commit cbe25dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def _get_alerts_group_template(self, alert: AlertsGroup, *args, **kwargs): # ty

if alert.model_errors:
rows = [alert.summary for alert in alert.model_errors]
text = "<br>".join([f"&#x1F53A; {row}" for row in rows])
text = "<br>".join([f"&#x1F635; {row}" for row in rows])
self.message_builder.addSection(
self._get_section("*Model errors*", f"{text}")
)
Expand Down

0 comments on commit cbe25dd

Please sign in to comment.