diff --git a/src/app/routes/repository/repository-commit/repository-commit.component.ts b/src/app/routes/repository/repository-commit/repository-commit.component.ts index 4af9d68..d871944 100644 --- a/src/app/routes/repository/repository-commit/repository-commit.component.ts +++ b/src/app/routes/repository/repository-commit/repository-commit.component.ts @@ -95,7 +95,6 @@ export class RepositoryCommitComponent implements OnInit { let { value: nextFile } = gen.next(); if (nextFile.type === 'path') { file.name = `${file.name}/${nextFile.name}`; - file.path = `${file.path}${nextFile.path}`; file.children = [...nextFile.children]; this.checkPath(file, gen); }