This commit is contained in:
Rizky 2024-08-19 11:54:19 +07:00
parent d193befb27
commit 5048e8e287
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ function bytesToHumanFileSize(bytes: number): string {
}
const hydrateItem = (p: PG, item: IItem) => {
const result = deepClone(item);
const result = { ...item };
if (result.childs) {
for (const [k, child] of Object.entries(result.childs)) {