파일 목록에서 업로드 중인 파일이 표시되지 않던 버그 수정

This commit is contained in:
static
2025-01-18 16:29:39 +09:00
parent b8e1584575
commit 2b303f9197

View File

@@ -68,7 +68,7 @@
$fileUploadStatusStore
.filter((statusStore) => {
const { parentId, status } = get(statusStore);
return parentId === info.id && !isFileUploading(status);
return parentId === info.id && isFileUploading(status);
})
.map((status) => ({
type: "uploading-file",