Fixed , bug
All checks were successful
thehideout/TheHideout-API/pipeline/head This commit looks good
All checks were successful
thehideout/TheHideout-API/pipeline/head This commit looks good
This commit is contained in:
parent
86bd0b7fc8
commit
b10247509a
@ -63,7 +63,7 @@ export async function addToNotionDataSource(
|
||||
} else if (key === "Features") {
|
||||
notionProperties[key] = {
|
||||
multi_select: value.map((feature) => ({
|
||||
name: feature,
|
||||
name: feature.replace(/,/g, ";"),
|
||||
})),
|
||||
};
|
||||
} else if (key === "Message" && value != "") {
|
||||
@ -188,7 +188,7 @@ export async function updateNotionPage(
|
||||
} else if (key === "Features") {
|
||||
notionProperties[key] = {
|
||||
multi_select: value.map((feature) => ({
|
||||
name: feature,
|
||||
name: feature.replace(/,/g, ";"),
|
||||
})),
|
||||
};
|
||||
} else if (typeof value === "string" && value != "") {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user