Skip to content

Commit 38a0026

Browse files
committed
Add missing space before entity name on activity log
1 parent 4961396 commit 38a0026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/lib/frontend/templates/views/account/activity_log_table.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ d.Node activityLogNode({
1414
return d.fragment([
1515
d.p(children: [
1616
d.text('List of activities relevant to $forCategory'),
17-
if (forEntity != null) d.code(text: forEntity),
17+
if (forEntity != null) ...[d.text(' '), d.code(text: forEntity)],
1818
d.text('. '),
1919
d.text('Events other than package publication expire after 2 months.'),
2020
]),

0 commit comments

Comments
 (0)