diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index 4b0498b7..9f8d258c 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -702,6 +702,14 @@ export default function ProcessInstanceListTable({ setEndFromTime(''); setEndToDate(''); setEndToTime(''); + setProcessInitiatorSelection(null); + setProcessInitiatorText(''); + + if (reportMetadata) { + reportMetadata.columns = reportMetadata.columns.filter( + (column) => !column.filterable + ); + } }; const processInstanceReportDidChange = (selection: any, mode?: string) => {