updated headers for the homepage in progress tab

This commit is contained in:
jasquat 2023-05-15 10:34:30 -04:00
parent 7b1ee33cdd
commit 406f0a6cf1
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ export default function InProgressInstances() {
const titleText = `This is a list of instances with tasks that are waiting for the ${userGroup} group.`; const titleText = `This is a list of instances with tasks that are waiting for the ${userGroup} group.`;
const headerElement = ( const headerElement = (
<h2 title={titleText} className="process-instance-table-header"> <h2 title={titleText} className="process-instance-table-header">
Instances with tasks waiting for <strong>{userGroup}</strong> Waiting for <strong>{userGroup}</strong>
</h2> </h2>
); );
return ( return (
@ -61,7 +61,7 @@ export default function InProgressInstances() {
'This is a list of instances that have tasks that you can complete.'; 'This is a list of instances that have tasks that you can complete.';
const waitingForMeHeaderElement = ( const waitingForMeHeaderElement = (
<h2 title={waitingForMeTitleText} className="process-instance-table-header"> <h2 title={waitingForMeTitleText} className="process-instance-table-header">
Instances with tasks waiting for me Waiting for me
</h2> </h2>
); );