Skip to content

Commit

Permalink
remove unwanted filter
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriRabalais committed Aug 10, 2020
1 parent 49585a5 commit fac72ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,7 @@ class ResolvedFilterableDataTable extends Component {
const options = this.state.data.fieldOptions;

const fields = [
{label: 'Resolved ID', show: false, filter: {
name: 'ResolvedID',
type: 'text',
}},
{label: 'Resolved ID', show: false},
{label: 'Project', show: true, filter: {
name: 'Project',
type: 'select',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,7 @@ class UnresolvedFilterableDataTable extends Component {
const options = this.state.data.fieldOptions;

const fields = [
{label: 'Conflict ID', show: false, filter: {
name: 'ConflictID',
type: 'text',
}},
{label: 'Conflict ID', show: false},
{label: 'Project', show: true, filter: {
name: 'Project',
type: 'select',
Expand Down

0 comments on commit fac72ed

Please sign in to comment.