Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Mar 25, 2020
1 parent 5554f8c commit ca66d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/model/StringColumn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@ export default class StringColumn extends ValueColumn<string> {
};
} else {
this.currentFilter = {
filter: filter,
filter,
filterMissing: false
};
}
} else {
this.currentFilter = {
filter: filter.filter && (<string>filter.filter).startsWith('REGEX:') ? new RegExp(filter.slice(6), 'gm') : filter.filter || '',
filterMissing: filter.filterMissing === true
}
};
}
} else {
this.currentFilter = null;
Expand Down

0 comments on commit ca66d3e

Please sign in to comment.