Skip to content

Commit

Permalink
#7852 fix filtering (#7888)
Browse files Browse the repository at this point in the history
* #7852 fix filtering

* #7852 remove debugger statement
  • Loading branch information
piorek authored and LeeTZ committed Dec 13, 2018
1 parent 05c547c commit 5d4bba3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class ColumnFilter {
static escapeColumnName(columnName: string): string {
return String(columnName)
.replace(/\s+/g, '_')
.replace('/\W+/g', '');
.replace(/\W+/g, '');
}

constructor(dataGrid: BeakerXDataGrid, column: DataGridColumn, options: { x, y, width, height }) {
Expand Down

0 comments on commit 5d4bba3

Please sign in to comment.