Browse Source

Fix simple icons URL

Svilen Markov 9 months ago
parent
commit
bc8f17393a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/widget/fields.go

+ 1 - 1
internal/widget/fields.go

@@ -183,7 +183,7 @@ func toSimpleIconIfPrefixed(icon string) (string, bool) {
 	}
 	}
 
 
 	icon = strings.TrimPrefix(icon, "si:")
 	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
 	return icon, true
 }
 }