Skip to content

Commit

Permalink
Disable global filter on irrelevant columns
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Nov 8, 2022
1 parent 88c18d3 commit e07f296
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/javascript/mda_viewer/components/VariablesEditor2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ function VariablesEditor(props) {
columnHelper.accessor('active', {
header: () => '#',
cell: (info) => CheckButtonCell(info),
enableGlobalFilter: false,
}),
columnHelper.accessor('from', {
header: () => 'From',
Expand All @@ -502,25 +503,32 @@ function VariablesEditor(props) {
}),
columnHelper.accessor('init', {
header: () => 'Init',
enableGlobalFilter: false,
}),
columnHelper.accessor('lower', {
header: () => 'Lower',
enableGlobalFilter: false,
}),
columnHelper.accessor('upper', {
header: () => 'Upper',
enableGlobalFilter: false,
}),
columnHelper.accessor('uq', {
header: () => 'UQ',
cell: (info) => ButtonCell(info),
enableGlobalFilter: false,
}),
columnHelper.accessor('ref', {
header: () => 'Ref',
enableGlobalFilter: false,
}),
columnHelper.accessor('ref0', {
header: () => 'Ref0',
enableGlobalFilter: false,
}),
columnHelper.accessor('res_ref', {
header: () => 'Res.Ref',
enableGlobalFilter: false,
}),
];

Expand Down

0 comments on commit e07f296

Please sign in to comment.