From bc8f17393a6a140c74b961336be304c0a0b3ae0e Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:54:34 +0100 Subject: [PATCH] Fix simple icons URL --- internal/widget/fields.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/widget/fields.go b/internal/widget/fields.go index 66fa199..6dd64a8 100644 --- a/internal/widget/fields.go +++ b/internal/widget/fields.go @@ -183,7 +183,7 @@ func toSimpleIconIfPrefixed(icon string) (string, bool) { } icon = strings.TrimPrefix(icon, "si:") - icon = "https://cdn.jsdelivr.net/npm/simple-icons@latest/" + icon + ".svg" + icon = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/" + icon + ".svg" return icon, true }