Переглянути джерело

Shows rebase status even with no conflicts

main
Eric Amodio 3 роки тому
джерело
коміт
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(

Завантаження…
Відмінити
Зберегти