mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-03-04 02:50:38 +00:00
16 lines
460 B
TypeScript
16 lines
460 B
TypeScript
import ProcessInstanceListTable from './ProcessInstanceListTable';
|
|
|
|
const paginationQueryParamPrefix = 'my_completed_instances';
|
|
|
|
export default function MyCompletedInstances() {
|
|
return (
|
|
<ProcessInstanceListTable
|
|
filtersEnabled={false}
|
|
paginationQueryParamPrefix={paginationQueryParamPrefix}
|
|
perPageOptions={[2, 5, 25]}
|
|
reportIdentifier="system_report_completed_instances_initiated_by_me"
|
|
showReports={false}
|
|
/>
|
|
);
|
|
}
|