return res
},
saveCSV() {
+ this.RemovePlaceHolderTags();
let csv = this.tagsToCSV();
const blob = new Blob([csv], { type: 'text/csv' });
const url = URL.createObjectURL(blob);
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);