このコミットが含まれているのは:
2026-07-15 20:51:24 +09:00
コミット 025f49cbcb
11個のファイルの変更157行の追加33行の削除
+2 -2
ファイルの表示
@@ -73,7 +73,7 @@ const PostImportRowDialog: FC<Props> = (
const [resetRequested, setResetRequested] = useState (false)
useEffect (() => {
if (open && row)
if (open && row != null)
{
setDraft (buildDraft (row))
setResetRequested (false)
@@ -90,7 +90,7 @@ const PostImportRowDialog: FC<Props> = (
value: Draft[Key],
) => {
setDraft (current =>
current ? { ...current, [key]: value } : current)
current != null ? { ...current, [key]: value } : current)
}
const save = async () => {