Skip to content

Commit

Permalink
feat: search cr by title (#3610)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Apr 25, 2023
1 parent cb6230e commit abd19d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -21,7 +21,6 @@ export const ChangeRequestTitleCell = ({
}: IChangeRequestTitleCellProps) => {
const projectId = useRequiredPathParam('projectId');
const { id, title, features: changes } = original;
const theme = useTheme();
const path = `/projects/${projectId}/change-requests/${id}`;

if (!value) {
Expand Down
Expand Up @@ -103,7 +103,8 @@ export const ChangeRequestsTabs = ({
Header: 'Title',
width: 100,
canSort: true,
accessor: 'id',
accessor: 'title',
searchable: true,
Cell: ChangeRequestTitleCell,
},
{
Expand Down

0 comments on commit abd19d4

Please sign in to comment.