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:
parent
cb6230e3b9
commit
abd19d46e7
@ -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) {
|
||||
|
@ -103,7 +103,8 @@ export const ChangeRequestsTabs = ({
|
||||
Header: 'Title',
|
||||
width: 100,
|
||||
canSort: true,
|
||||
accessor: 'id',
|
||||
accessor: 'title',
|
||||
searchable: true,
|
||||
Cell: ChangeRequestTitleCell,
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user