mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
feat: search cr by title (#3610)
This commit is contained in:
parent
cb6230e3b9
commit
abd19d46e7
frontend/src/component/changeRequest/ProjectChangeRequests/ChangeRequestsTabs
@ -21,7 +21,6 @@ export const ChangeRequestTitleCell = ({
|
|||||||
}: IChangeRequestTitleCellProps) => {
|
}: IChangeRequestTitleCellProps) => {
|
||||||
const projectId = useRequiredPathParam('projectId');
|
const projectId = useRequiredPathParam('projectId');
|
||||||
const { id, title, features: changes } = original;
|
const { id, title, features: changes } = original;
|
||||||
const theme = useTheme();
|
|
||||||
const path = `/projects/${projectId}/change-requests/${id}`;
|
const path = `/projects/${projectId}/change-requests/${id}`;
|
||||||
|
|
||||||
if (!value) {
|
if (!value) {
|
||||||
|
@ -103,7 +103,8 @@ export const ChangeRequestsTabs = ({
|
|||||||
Header: 'Title',
|
Header: 'Title',
|
||||||
width: 100,
|
width: 100,
|
||||||
canSort: true,
|
canSort: true,
|
||||||
accessor: 'id',
|
accessor: 'title',
|
||||||
|
searchable: true,
|
||||||
Cell: ChangeRequestTitleCell,
|
Cell: ChangeRequestTitleCell,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user