From 3d569223e9c370fdcce53fa35198a4227e19e5ce Mon Sep 17 00:00:00 2001 From: Dominik Schenk Date: Sat, 25 Sep 2021 00:16:40 +0200 Subject: [PATCH] fix: Grouped folder can now be staged fixes #20 --- .../repository/repository-commit/repository-commit.component.ts | 1 - 1 file changed, 1 deletion(-) 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); }