このコミットが含まれているのは:
2026-07-15 20:51:24 +09:00
コミット 025f49cbcb
11個のファイルの変更157行の追加33行の削除
+4 -2
ファイルの表示
@@ -14,6 +14,9 @@ const buildResetSnapshot = (row: PostImportRow) => ({
tagSources: {
automatic: row.tagSources?.automatic ?? '',
manual: row.tagSources?.manual ?? '' },
fieldWarnings: Object.fromEntries (
Object.entries (row.fieldWarnings).map (([key, values]) => [key, [...values]])),
baseWarnings: [...row.baseWarnings],
metadataUrl: row.metadataUrl })
@@ -73,8 +76,7 @@ export const mergeValidatedImportRows = (
if (
previous.importStatus === 'created'
|| previous.importStatus === 'skipped'
|| previous.importStatus === 'failed'
)
|| previous.importStatus === 'failed')
return previous
const row = validatedMap.get (previous.sourceRow)