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"
|
||||
isCurrentPage={isActivePage('/admin/process-instances/reports')}
|
||||
>
|
||||
Reports
|
||||
Perspectives
|
||||
</HeaderMenuItem>
|
||||
</>
|
||||
);
|
||||
|
|
|
@ -44,9 +44,9 @@ export default function ProcessInstanceReportList() {
|
|||
|
||||
const headerStuff = (
|
||||
<>
|
||||
<h1>Process Instance Reports</h1>
|
||||
<h1>Process Instance Perspectives</h1>
|
||||
<Button href="/admin/process-instances/reports/new">
|
||||
Add a process instance report
|
||||
Add a process instance perspective
|
||||
</Button>
|
||||
</>
|
||||
);
|
||||
|
@ -61,7 +61,7 @@ export default function ProcessInstanceReportList() {
|
|||
return (
|
||||
<main>
|
||||
{headerStuff}
|
||||
<p>No reports found</p>
|
||||
<p>No perspectives found</p>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -56,7 +56,7 @@ export default function ProcessInstanceReportNew() {
|
|||
return (
|
||||
<>
|
||||
<ProcessBreadcrumb />
|
||||
<h1>Add Process Model</h1>
|
||||
<h1>Add Process Instance Perspective</h1>
|
||||
<form onSubmit={addProcessInstanceReport}>
|
||||
<label htmlFor="identifier">
|
||||
identifier:
|
||||
|
|
|
@ -80,11 +80,11 @@ export default function ProcessInstanceReport() {
|
|||
processGroupId={params.process_group_id}
|
||||
linkProcessModel
|
||||
/>
|
||||
<h1>Process Instance Report: {params.report_identifier}</h1>
|
||||
<h1>Process Instance Perspective: {params.report_identifier}</h1>
|
||||
<Button
|
||||
href={`/admin/process-instances/reports/${params.report_identifier}/edit`}
|
||||
>
|
||||
Edit process instance report
|
||||
Edit process instance perspective
|
||||
</Button>
|
||||
<PaginationForTable
|
||||
page={page}
|
||||
|
|
Loading…
Reference in New Issue