Merge pull request #17476 from strapi/feat/sortable-assignee-list-view

Make assignee sortable from the list view
This commit is contained in:
Gustav Hansen 2023-07-31 15:32:00 +02:00 committed by GitHub
commit faedd3a6d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,13 @@ export const REVIEW_WORKFLOW_COLUMNS_EE = [
defaultMessage: 'Assignee',
},
searchable: false,
sortable: false,
sortable: true,
mainField: {
name: 'firstname',
schema: {
type: 'string',
},
},
},
},
];