From c2c64293f5a1faae9cc72d24cbfbee079628ec8e Mon Sep 17 00:00:00 2001 From: Maddy <12754347+MaddyDev@users.noreply.github.com> Date: Fri, 1 Nov 2019 17:06:38 -0700 Subject: [PATCH] missed insiders-only check removal (#8184) --- .../workbench/parts/notebook/browser/notebook.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/sql/workbench/parts/notebook/browser/notebook.component.ts b/src/sql/workbench/parts/notebook/browser/notebook.component.ts index b8be36359c..cf7213b0b4 100644 --- a/src/sql/workbench/parts/notebook/browser/notebook.component.ts +++ b/src/sql/workbench/parts/notebook/browser/notebook.component.ts @@ -447,9 +447,7 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe protected initNavSection(): void { this._navProvider = this.notebookService.getNavigationProvider(this._notebookParams.notebookUri); - if (this.environmentService.appQuality !== 'stable' && - this.contextKeyService.getContextKeyValue('bookOpened') && - this._navProvider) { + if (this.contextKeyService.getContextKeyValue('bookOpened') && this._navProvider) { this._navProvider.getNavigation(this._notebookParams.notebookUri).then(result => { this.navigationResult = result; this.addButton(localize('previousButtonLabel', "< Previous"),