1
0
mirror of synced 2025-12-25 02:02:49 -05:00

rm placeholders when saving or pring

This commit is contained in:
Marc Foley
2025-05-28 14:51:06 +01:00
parent 4a8b0e8443
commit 61e13d61ab

View 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);