Skip to content

Commit

Permalink
add id to provision search
Browse files Browse the repository at this point in the history
  • Loading branch information
mgtennant committed Aug 29, 2024
1 parent 52ca7aa commit ba201eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/content/pages/ManageProvisionsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ManageProvisionsPage: FC<ManageProvisionsPageProps> = () => {
};

const handleFilterProvisions = (searchTerm: string) => {
const searchKeys: string[] = ['provision_name', 'category'];
const searchKeys: string[] = ['id', 'provision_name', 'category'];
setFilterText(searchTerm);

const fp: Provision[] = data.allProvisions
Expand Down

0 comments on commit ba201eb

Please sign in to comment.