From 19aa34e5bb05da3518afb164ab50ff816ea17c83 Mon Sep 17 00:00:00 2001 From: AmalChandru Date: Tue, 3 Dec 2024 22:36:45 +0530 Subject: [PATCH] feat(reporter): rename column 'Update To' to 'Latest' Renamed the 'Update To' column in the remediation advice table to 'Latest' for improved clarity and alignment with backend data --- pkg/reporter/summary.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/reporter/summary.go b/pkg/reporter/summary.go index 5833d47b..6779540e 100644 --- a/pkg/reporter/summary.go +++ b/pkg/reporter/summary.go @@ -446,7 +446,7 @@ func (r *summaryReporter) renderRemediationAdvice() { func (r *summaryReporter) addRemediationAdviceTableRows(tbl table.Writer, sortedPackages []*summaryReporterRemediationData, maxAdvice int) { - tbl.AppendHeader(table.Row{"Ecosystem", "Package", "Update To", "Impact Score", "Vuln Risk"}) + tbl.AppendHeader(table.Row{"Ecosystem", "Package", "Latest", "Impact Score", "Vuln Risk"}) // Re-use the formatting logic within this function boundary formatTags := func(tags []string) string {