Frontend label changes (#54)
This commit is contained in:
parent
66947160ab
commit
07614abbc1
|
@ -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>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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}
|
||||||
|
|
Loading…
Reference in New Issue