split tags by comma

This commit is contained in:
Raicuparta 2022-10-14 22:25:28 +02:00
parent e45d56456c
commit ab7a8d9775

View File

@ -40,7 +40,7 @@ type IssueForm = {
utility?: string;
parent?: string;
authorDisplay?: string;
tags?: string[];
tags?: string;
};
async function run() {
@ -92,7 +92,7 @@ async function run() {
}
if (tags) {
newMod.tags = tags;
newMod.tags = tags.split(", ");
}
const existingMod = mods.find(