|
@@ -551,7 +551,7 @@ async function updateRow(row) {
|
|
country: row.country,
|
|
country: row.country,
|
|
brandName: row.brandName,
|
|
brandName: row.brandName,
|
|
user: row.user,
|
|
user: row.user,
|
|
- operater: row.operater?.split(',').map(item => item.trim()),
|
|
|
|
|
|
+ operater: Array.isArray(row.operater) ? row.operater : row.operater.split(',').map(item => item.trim()),
|
|
currencyCode: row.currencyCode,
|
|
currencyCode: row.currencyCode,
|
|
currencyCodePlatform: row.currencyCodePlatform,
|
|
currencyCodePlatform: row.currencyCodePlatform,
|
|
line: row.line,
|
|
line: row.line,
|