mirror of
https://github.com/ow-mods/ow-mod-db.git
synced 2025-12-11 20:15:24 +01:00
split tags by comma
This commit is contained in:
parent
e45d56456c
commit
ab7a8d9775
@ -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(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user