Просмотр исходного кода

Shows rebase status even with no conflicts

main
Eric Amodio 3 лет назад
Родитель
Сommit
b69a177d62
1 измененных файлов: 2 добавлений и 5 удалений
  1. +2
    -5
      src/views/nodes/rebaseStatusNode.ts

+ 2
- 5
src/views/nodes/rebaseStatusNode.ts Просмотреть файл

@ -50,11 +50,8 @@ export class RebaseStatusNode extends ViewNode {
}
async getChildren(): Promise<ViewNode[]> {
if (this.status?.hasConflicts !== true) return [];
let children: FileNode[] = this.status.conflicts.map(
f => new MergeConflictFileNode(this.view, this, this.rebaseStatus, f),
);
let children: FileNode[] =
this.status?.conflicts.map(f => new MergeConflictFileNode(this.view, this, this.rebaseStatus, f)) ?? [];
if (this.view.config.files.layout !== ViewFilesLayout.List) {
const hierarchy = Arrays.makeHierarchical(

Загрузка…
Отмена
Сохранить