Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #650 from GuessWhoSamFoo/issue-648
Browse files Browse the repository at this point in the history
Fixed hard coded table filter column
  • Loading branch information
wwitzel3 committed Feb 10, 2020
2 parents 8d4709d + c61a6ed commit a10dbda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class ContentFilterComponent
return false;
}

const view = row.Phase as TextView;
const view = row[this.column] as TextView;
return selected.includes(view.config.value);
}

Expand Down

0 comments on commit a10dbda

Please sign in to comment.