Procházet zdrojové kódy

Removes extra refresh call

main
Eric Amodio před 2 roky
rodič
revize
0e568e9b30
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. +1
    -2
      src/views/nodes/commitNode.ts

+ 1
- 2
src/views/nodes/commitNode.ts Zobrazit soubor

@ -98,6 +98,7 @@ export class CommitNode extends ViewRefNode
new PullRequestNode(this.view as ViewsWithCommits, this, pr, commit),
);
}
// Refresh this node to show a spinner while the pull request is loading
this.view.triggerNodeChange(this);
});
@ -107,8 +108,6 @@ export class CommitNode extends ViewRefNode
() => this.view.triggerNodeChange(this),
() => {},
);
queueMicrotask(() => this.view.triggerNodeChange(this));
});
}
}

Načítá se…
Zrušit
Uložit