We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e52589 commit 2f28a09Copy full SHA for 2f28a09
src/vs/workbench/contrib/extensions/browser/extensionEditor.ts
@@ -471,9 +471,16 @@ export class ExtensionEditor extends EditorPane {
471
const currentOptions: IExtensionEditorOptions | undefined = this.options;
472
super.setOptions(options);
473
this.updatePreReleaseVersionContext();
474
+
475
if (this.input && this.template && currentOptions?.showPreReleaseVersion !== options?.showPreReleaseVersion) {
476
this.render((this.input as ExtensionsInput).extension, this.template, !!options?.preserveFocus);
477
+ return;
478
}
479
480
+ if (options?.tab) {
481
+ this.template?.navbar.switch(options.tab);
482
+ }
483
484
485
486
private updatePreReleaseVersionContext(): void {
0 commit comments