Skip to content

Commit

Permalink
issue #1098 - Eventlog - fontawesome not showing (very minor)
Browse files Browse the repository at this point in the history
  • Loading branch information
davmlaw committed Dec 6, 2024
1 parent d9a989c commit 5128e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classification/models/classification_import_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def outstanding_import_check(sender, instance: ClassificationImportRun, **kwargs
ongoing_imports = ClassificationImportRun.ongoing_imports()

nb = NotificationBuilder("Import started")
emoji = ":golf:" if instance.status == ClassificationImportRunStatus.COMPLETED else ":skunk:"
emoji = ":golfer:" if instance.status == ClassificationImportRunStatus.COMPLETED else ":skunk:"
ongoing_message = f" ongoing imports {ongoing_imports}" if ongoing_imports else ""
nb.add_markdown(f"{emoji} Import {instance.get_status_display()} {instance.identifier} {instance.row_count} rows{ongoing_message if ongoing_imports else ''}")
# provide full details of import numbers in notification
Expand Down

0 comments on commit 5128e26

Please sign in to comment.