mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-15 06:18:48 +00:00
파일 목록에서 업로드 중인 파일이 표시되지 않던 버그 수정
This commit is contained in:
@@ -68,7 +68,7 @@
|
|||||||
$fileUploadStatusStore
|
$fileUploadStatusStore
|
||||||
.filter((statusStore) => {
|
.filter((statusStore) => {
|
||||||
const { parentId, status } = get(statusStore);
|
const { parentId, status } = get(statusStore);
|
||||||
return parentId === info.id && !isFileUploading(status);
|
return parentId === info.id && isFileUploading(status);
|
||||||
})
|
})
|
||||||
.map((status) => ({
|
.map((status) => ({
|
||||||
type: "uploading-file",
|
type: "uploading-file",
|
||||||
|
|||||||
Reference in New Issue
Block a user