Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Nov 30, 2020
1 parent bef8610 commit 7e9bedb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/debugger/src/panels/variables/grid.ts
Expand Up @@ -312,9 +312,7 @@ class GridModel extends DataModel {
const scope = scopes.find(scope => scope.name === this._scope) ?? scopes[0];
const variables = scope?.variables ?? [];
const filtered = variables.filter(
variable =>
variable.name &&
!this._filter.has(variable.name)
variable => variable.name && !this._filter.has(variable.name)
);
filtered.forEach((variable, index) => {
this._data.name[index] = variable.name;
Expand Down

0 comments on commit 7e9bedb

Please sign in to comment.