Remove search on "Pending Tasks" table (#10018)

- Pending tasks are encoded into payload
- None of the interesting fields are searchable
This commit is contained in:
Oliver 2025-07-15 00:14:18 +10:00 committed by GitHub
parent 9f715337ec
commit ea00a50dfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,7 @@ export default function PendingTasksTable({
{
accessor: 'lock',
title: t`Created`,
sortable: true,
sortable: false,
switchable: false
},
{
@ -97,6 +97,7 @@ export default function PendingTasksTable({
afterBulkDelete: onRecordsUpdated,
enableBulkDelete: user.isStaff(),
enableSelection: true,
enableSearch: false,
tableActions: tableActions
}}
/>