From 6e541cf05d909cd7147b17a3b42e70a9b7f418d4 Mon Sep 17 00:00:00 2001 From: Vito Castellano Date: Mon, 29 Dec 2025 15:11:12 +0100 Subject: [PATCH] =?UTF-8?q?fix(ui):=20rename=20column=20header=20from=20'?= =?UTF-8?q?=E2=86=93=20(90d)'=20to=20'Downloads'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit More descriptive and cleaner column name for the downloads count. --- internal/services/search.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/search.go b/internal/services/search.go index 75aadea..d26d1f0 100644 --- a/internal/services/search.go +++ b/internal/services/search.go @@ -117,7 +117,7 @@ func (s *AppService) forceRefreshResults() { // setResults updates the results table with the provided data and optionally scrolls to the top. func (s *AppService) setResults(data *[]models.Package, scrollToTop bool) { s.layout.GetTable().Clear() - s.layout.GetTable().SetTableHeaders("Type", "Name", "Version", "Description", "↓ (90d)") + s.layout.GetTable().SetTableHeaders("Type", "Name", "Version", "Description", "Downloads") for i, info := range *data { // Type cell with escaped brackets