Skip to content

Commit

Permalink
fixes #100528
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Jun 23, 2020
1 parent 017942a commit 2dec57c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -271,7 +271,7 @@ export class OpenEditorsView extends ViewPane {
}));
const resourceNavigator = this._register(new ListResourceNavigator(this.list, { configurationService: this.configurationService }));
this._register(resourceNavigator.onDidOpen(e => {
if (!e.element) {
if (typeof e.element !== 'number') {
return;
}

Expand Down

0 comments on commit 2dec57c

Please sign in to comment.