From 38a00264a98966a27c37753e5bdfe1228f24f8ca Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Fri, 7 Feb 2025 16:06:15 -0600 Subject: [PATCH] Add missing space before entity name on activity log --- .../frontend/templates/views/account/activity_log_table.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/frontend/templates/views/account/activity_log_table.dart b/app/lib/frontend/templates/views/account/activity_log_table.dart index 630af63464..f4e2834760 100644 --- a/app/lib/frontend/templates/views/account/activity_log_table.dart +++ b/app/lib/frontend/templates/views/account/activity_log_table.dart @@ -14,7 +14,7 @@ d.Node activityLogNode({ return d.fragment([ d.p(children: [ d.text('List of activities relevant to $forCategory'), - if (forEntity != null) d.code(text: forEntity), + if (forEntity != null) ...[d.text(' '), d.code(text: forEntity)], d.text('. '), d.text('Events other than package publication expire after 2 months.'), ]),