From f75454ffc1b7fffc3d240eb75028a98c0e91a706 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Thu, 3 Apr 2025 09:01:03 -0600 Subject: [PATCH] fixup! web/timeline: render ACL changes in details tag Signed-off-by: Sumner Evans --- web/src/ui/timeline/content/ACLBody.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/ui/timeline/content/ACLBody.tsx b/web/src/ui/timeline/content/ACLBody.tsx index 441d5d8..7bb15d2 100644 --- a/web/src/ui/timeline/content/ACLBody.tsx +++ b/web/src/ui/timeline/content/ACLBody.tsx @@ -61,7 +61,7 @@ function makeACLChangeStringSummary( parts.push(`added ${addedDeny.length} ${addedDeny.length > 1 ? "entries" : "entry"} to the ban list`) } if (removedDeny.length > 0) { - parts.push(`removed ${addedDeny.length} ${addedDeny.length > 1 ? "entries" : "entry"} to the ban list`) + parts.push(`removed ${removedDeny.length} ${removedDeny.length > 1 ? "entries" : "entry"} from the ban list`) } if (addedAllow.length > 0) { parts.push(`added ${addedAllow.length} ${addedAllow.length > 1 ? "entries" : "entry"} to the allowlist`)