Browse Source

Fixes asWebviewUri scope in GraphWebview

main
Keith Daulton 2 years ago
parent
commit
931e94b5a6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/plus/webviews/graph/graphWebview.ts

+ 1
- 1
src/plus/webviews/graph/graphWebview.ts View File

@ -471,7 +471,7 @@ export class GraphWebview extends WebviewBase {
const data = await this.container.git.getCommitsForGraph(
this.repository.path,
this._panel!.webview.asWebviewUri,
this._panel!.webview.asWebviewUri.bind(this._panel!.webview),
{ limit: limit, ref: this._selectedSha ?? 'HEAD' },
);
this.setGraph(data);

Loading…
Cancel
Save