some more updates for text w/ burnettk

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

View File

@ -7,7 +7,7 @@ export default function MyOpenProcesses() {
<TaskListTable
apiPath="/tasks/for-my-open-processes"
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."
paginationClassName="with-large-bottom-margin"
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 (
<>
<h2>Tasks completed by {userGroup} group</h2>
<h2>With tasks completed by group: {userGroup}</h2>
<p className="data-table-description">
This is a list of instances with tasks that were completed by the{' '}
{userGroup} group.
</p>
<ProcessInstanceListTable
filtersEnabled={false}
paginationQueryParamPrefix="group_completed_tasks"
paginationQueryParamPrefix="group_completed_instances"
paginationClassName="with-large-bottom-margin"
perPageOptions={[2, 5, 25]}
reportIdentifier="system_report_instances_with_tasks_completed_by_my_groups"
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}`}
/>
</>
@ -56,7 +56,7 @@ export default function CompletedInstances() {
paginationClassName="with-large-bottom-margin"
autoReload
/>
<h2>Tasks completed by me</h2>
<h2>With tasks completed by me</h2>
<p className="data-table-description">
This is a list of instances where you have completed tasks.
</p>
@ -66,7 +66,7 @@ export default function CompletedInstances() {
perPageOptions={[2, 5, 25]}
reportIdentifier="system_report_instances_with_tasks_completed_by_me"
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"
/>
{groupTableComponents()}