Skip to content

Commit

Permalink
Merge pull request #8497 from google/tag-fix
Browse files Browse the repository at this point in the history
tags.html: add header before parsing
  • Loading branch information
m4rc1e authored Nov 15, 2024
2 parents 958bd43 + 0402c10 commit a092635
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .ci/tags.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ <h1>Google Fonts Tagger</h1>
},
uniqueFamilies() {
return Array.from(new Set(this.Families.map((family) => family.Family)));
},
}
},
methods: {
sortedCategories() {
Expand Down Expand Up @@ -317,6 +317,7 @@ <h1>Google Fonts Tagger</h1>
return response.text()
})
.then(csvText => {
csvText = "Family,Group/Tag,Weight\n" + csvText;
Papa.parse(csvText, {
header: true,
complete: (results) => {
Expand Down

0 comments on commit a092635

Please sign in to comment.