diff --git a/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx b/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx index 7c46e4f..a9a1dc7 100644 --- a/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx +++ b/plugins/plugin-radius/src/components/recipes/RecipeTable.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Table, TableColumn } from '@backstage/core-components'; +import { Table, TableColumn, TableFilter } from '@backstage/core-components'; import { EnvironmentProperties, Resource } from '../../resources'; interface DisplayRecipe { @@ -41,12 +41,33 @@ export const RecipeTable = ({ { title: 'Template Path', field: 'templatePath' }, ]; + const filters: TableFilter[] = [ + { + column: 'Name', + type: 'select', + }, + { + column: 'Type', + type: 'multiple-select', + }, + { + column: 'Kind', + type: 'multiple-select', + }, + { + column: 'Template Path', + type: 'multiple-select', + }, + + ]; + return ( ); -}; +}; \ No newline at end of file