Frontend label changes (#54)

This commit is contained in:
jbirddog 2022-11-20 14:53:27 -05:00 committed by GitHub
parent 66947160ab
commit 07614abbc1
4 changed files with 7 additions and 7 deletions

View File

@ -164,7 +164,7 @@ export default function NavigationBar() {
href="/admin/process-instances/reports" href="/admin/process-instances/reports"
isCurrentPage={isActivePage('/admin/process-instances/reports')} isCurrentPage={isActivePage('/admin/process-instances/reports')}
> >
Reports Perspectives
</HeaderMenuItem> </HeaderMenuItem>
</> </>
); );

View File

@ -44,9 +44,9 @@ export default function ProcessInstanceReportList() {
const headerStuff = ( const headerStuff = (
<> <>
<h1>Process Instance Reports</h1> <h1>Process Instance Perspectives</h1>
<Button href="/admin/process-instances/reports/new"> <Button href="/admin/process-instances/reports/new">
Add a process instance report Add a process instance perspective
</Button> </Button>
</> </>
); );
@ -61,7 +61,7 @@ export default function ProcessInstanceReportList() {
return ( return (
<main> <main>
{headerStuff} {headerStuff}
<p>No reports found</p> <p>No perspectives found</p>
</main> </main>
); );
} }

View File

@ -56,7 +56,7 @@ export default function ProcessInstanceReportNew() {
return ( return (
<> <>
<ProcessBreadcrumb /> <ProcessBreadcrumb />
<h1>Add Process Model</h1> <h1>Add Process Instance Perspective</h1>
<form onSubmit={addProcessInstanceReport}> <form onSubmit={addProcessInstanceReport}>
<label htmlFor="identifier"> <label htmlFor="identifier">
identifier: identifier:

View File

@ -80,11 +80,11 @@ export default function ProcessInstanceReport() {
processGroupId={params.process_group_id} processGroupId={params.process_group_id}
linkProcessModel linkProcessModel
/> />
<h1>Process Instance Report: {params.report_identifier}</h1> <h1>Process Instance Perspective: {params.report_identifier}</h1>
<Button <Button
href={`/admin/process-instances/reports/${params.report_identifier}/edit`} href={`/admin/process-instances/reports/${params.report_identifier}/edit`}
> >
Edit process instance report Edit process instance perspective
</Button> </Button>
<PaginationForTable <PaginationForTable
page={page} page={page}