From b41839a5ee5f703168f8f5ed1e971d3b9eef73aa Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Tue, 12 May 2026 17:28:33 +0000 Subject: [PATCH] Add missing "created" field on related record --- platform/communication.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/communication.go b/platform/communication.go index c21bc960..ebe6e4dd 100644 --- a/platform/communication.go +++ b/platform/communication.go @@ -113,8 +113,9 @@ func CommunicationRelatedRecords(ctx context.Context, user User, comm *modelpubl for _, r := range reports_by_address { record_type := recordTypeFromReportType(r.ReportType) result = append(result, RelatedRecord{ - ID: r.PublicID, - Type: record_type, + Created: r.Created, + ID: r.PublicID, + Type: record_type, }) } }