このコミットが含まれているのは:
@@ -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 () => {
|
||||
|
||||
新しい課題から参照
ユーザをブロックする