missed insiders-only check removal (#8184)

This commit is contained in:
Maddy
2019-11-01 17:06:38 -07:00
committed by GitHub
parent 5bbc17be5c
commit c2c64293f5

View File

@@ -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"),