]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
rm placeholders when saving or pring
authorMarc Foley <m.foley.88@gmail.com>
Wed, 28 May 2025 13:51:06 +0000 (14:51 +0100)
committerMarc Foley <m.foley.88@gmail.com>
Wed, 28 May 2025 13:51:06 +0000 (14:51 +0100)
.ci/tags.html

index b6d13c004cd61404bd2f429f6e87cefe2d3a5e74..190f7d187d8f384e2b6692d8c0fdbb6c766034a6 100644 (file)
@@ -661,6 +661,7 @@ function axesCombos(axes) {
         return res
       },
       saveCSV() {
+        this.RemovePlaceHolderTags();
         let csv = this.tagsToCSV();
         const blob = new Blob([csv], { type: 'text/csv' });
         const url = URL.createObjectURL(blob);
@@ -673,6 +674,7 @@ function axesCombos(axes) {
         URL.revokeObjectURL(url);
       },
       prCSV() {
+        this.RemovePlaceHolderTags();
         let csv = this.tagsToCSV();
         alert("Tag data copied to clipboard. A github pull request page will open in a new tab. Please remove the old data and paste in the new.");
         navigator.clipboard.writeText(csv);