Skip to content

Commit

Permalink
Use unique id for extension page webviews
Browse files Browse the repository at this point in the history
Fixes #139346

This should also fix the case where you have multipe extension editors open and need to search in one of them
  • Loading branch information
mjbvz committed Dec 17, 2021
1 parent 3efb3d6 commit 807bf59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ export class ExtensionEditor extends EditorPane {
return Promise.resolve(null);
}

const webview = this.contentDisposables.add(this.webviewService.createWebviewOverlay('extensionEditor', {
const webview = this.contentDisposables.add(this.webviewService.createWebviewOverlay(generateUuid(), {
enableFindWidget: true,
tryRestoreScrollPosition: true,
}, {}, undefined));
Expand Down

0 comments on commit 807bf59

Please sign in to comment.