1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

feat: search cr by title (#3610)

This commit is contained in:
Mateusz Kwasniewski 2023-04-25 08:36:27 +02:00 committed by GitHub
parent cb6230e3b9
commit abd19d46e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

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