From 804cf9916b1c01210234a63d74a0391a686f3666 Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:47:30 +0000 Subject: [PATCH] Change simple icons provider and always use latest version --- 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 9ae1eda..72ade15 100644 --- a/internal/widget/fields.go +++ b/internal/widget/fields.go @@ -162,7 +162,7 @@ func toSimpleIconIfPrefixed(icon string) (string, bool) { } icon = strings.TrimPrefix(icon, "si:") - icon = "https://cdnjs.cloudflare.com/ajax/libs/simple-icons/11.14.0/" + icon + ".svg" + icon = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/" + icon + ".svg" return icon, true }