some more updates for text w/ burnettk

This commit is contained in:
jasquat 2022-12-16 14:41:13 -05:00
parent 7a099eb68d
commit d492533404
2 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ export default function MyOpenProcesses() {
<TaskListTable <TaskListTable
apiPath="/tasks/for-my-open-processes" apiPath="/tasks/for-my-open-processes"
paginationQueryParamPrefix={paginationQueryParamPrefix} paginationQueryParamPrefix={paginationQueryParamPrefix}
tableTitle="My open instances" tableTitle="Tasks for my open instances"
tableDescription="These tasks are for processes you started which are not complete. You may not have an action to take at this time. See below for tasks waiting on you." tableDescription="These tasks are for processes you started which are not complete. You may not have an action to take at this time. See below for tasks waiting on you."
paginationClassName="with-large-bottom-margin" paginationClassName="with-large-bottom-margin"
textToShowIfEmpty="There are no tasks for processes you started at this time." textToShowIfEmpty="There are no tasks for processes you started at this time."

View File

@ -20,19 +20,19 @@ export default function CompletedInstances() {
return userGroups.map((userGroup: string) => { return userGroups.map((userGroup: string) => {
return ( return (
<> <>
<h2>Tasks completed by {userGroup} group</h2> <h2>With tasks completed by group: {userGroup}</h2>
<p className="data-table-description"> <p className="data-table-description">
This is a list of instances with tasks that were completed by the{' '} This is a list of instances with tasks that were completed by the{' '}
{userGroup} group. {userGroup} group.
</p> </p>
<ProcessInstanceListTable <ProcessInstanceListTable
filtersEnabled={false} filtersEnabled={false}
paginationQueryParamPrefix="group_completed_tasks" paginationQueryParamPrefix="group_completed_instances"
paginationClassName="with-large-bottom-margin" paginationClassName="with-large-bottom-margin"
perPageOptions={[2, 5, 25]} perPageOptions={[2, 5, 25]}
reportIdentifier="system_report_instances_with_tasks_completed_by_my_groups" reportIdentifier="system_report_instances_with_tasks_completed_by_my_groups"
showReports={false} showReports={false}
textToShowIfEmpty="Your group has no completed tasks at this time." textToShowIfEmpty="This group has no completed instances at this time."
additionalParams={`group_identifier=${userGroup}`} additionalParams={`group_identifier=${userGroup}`}
/> />
</> </>
@ -56,7 +56,7 @@ export default function CompletedInstances() {
paginationClassName="with-large-bottom-margin" paginationClassName="with-large-bottom-margin"
autoReload autoReload
/> />
<h2>Tasks completed by me</h2> <h2>With tasks completed by me</h2>
<p className="data-table-description"> <p className="data-table-description">
This is a list of instances where you have completed tasks. This is a list of instances where you have completed tasks.
</p> </p>
@ -66,7 +66,7 @@ export default function CompletedInstances() {
perPageOptions={[2, 5, 25]} perPageOptions={[2, 5, 25]}
reportIdentifier="system_report_instances_with_tasks_completed_by_me" reportIdentifier="system_report_instances_with_tasks_completed_by_me"
showReports={false} showReports={false}
textToShowIfEmpty="You have no completed tasks at this time." textToShowIfEmpty="You have no completed instances at this time."
paginationClassName="with-large-bottom-margin" paginationClassName="with-large-bottom-margin"
/> />
{groupTableComponents()} {groupTableComponents()}