Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lechnerc77 committed Apr 16, 2024
1 parent dca4de4 commit 2dff57f
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions plugins/plugin-radius/src/components/recipes/RecipeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,32 +42,31 @@ export const RecipeTable = ({
];

const filters: TableFilter[] = [
{
column: 'Name',
type: 'select',
},
{
column: 'Type',
type: 'multiple-select',
},
{
column: 'Kind',
type: 'multiple-select',
},
{
column: 'Template Path',
type: 'multiple-select',
},

];
{
column: 'Name',
type: 'select',
},
{
column: 'Type',
type: 'multiple-select',
},
{
column: 'Kind',
type: 'multiple-select',
},
{
column: 'Template Path',
type: 'multiple-select',
},
];

return (
<Table
title={title || 'Recipes'}
options={{ search: true, paging: false, sorting: true}}
options={{ search: true, paging: false, sorting: true }}
columns={columns}
data={recipes}
filters={filters}
/>
);
};
};

0 comments on commit 2dff57f

Please sign in to comment.