aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kuna <1282324+codecalm@users.noreply.github.com>2022-04-11 21:26:13 +0200
committerGitHub <noreply@github.com>2022-04-11 21:26:13 +0200
commit8931ce19b823fe56fdb5a2cbe994328b0a205b8a (patch)
treec766eac396575bed1e2e09464fbcd4c66a13f606
parentfix `antenna-bars-off` (diff)
parentOptimize `src/tags.json` (diff)
downloadtabler-icons-8931ce19b823fe56fdb5a2cbe994328b0a205b8a.tar.xz
Merge pull request #226 from WinterSilence/patch-1
-rw-r--r--src/tags.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tags.json b/src/tags.json
index cab4e929..3fbfc7ad 100644
--- a/src/tags.json
+++ b/src/tags.json
@@ -3,7 +3,7 @@
{ {% for icon in site.icons %}
{% assign slug-tags = icon.slug | split: '-' %}{% assign tags = slug-tags | concat: icon.tags %} "{{ icon.slug }}": {
"category": "{{ icon.category }}",
- "tags": [{% for tag in tags %}"{{ tag }}"{% unless forloop.last %}, {% endunless %}{% endfor %}],
+ "tags": ["{{ tags | join: '", "' }}"],
"version": "{{ icon.version }}"
}{% unless forloop.last %}, {% endunless %}{% endfor %}
}