Skip to content

Commit

Permalink
feat: adjust toolbar for filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
lechnerc77 committed Apr 26, 2024
1 parent a931a48 commit 8ffa99a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions plugins/plugin-radius/src/components/recipes/RecipeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const RecipeTable = ({
const filters: TableFilter[] = [
{
column: 'Name',
type: 'select',
type: 'multiple-select',
},
{
column: 'Type',
Expand All @@ -62,8 +62,7 @@ export const RecipeTable = ({

return (
<Table
title={title || 'Recipes'}
options={{ search: true, paging: false, sorting: true }}
options={{ search: false, paging: false, sorting: true }}
columns={columns}
data={recipes}
filters={filters}
Expand Down

0 comments on commit 8ffa99a

Please sign in to comment.