add process model name to task list and task show, and add task name to list
This commit is contained in:
parent
6b21dec774
commit
8c23fb1851
|
@ -28,7 +28,8 @@ export default function TaskList() {
|
||||||
const taskUrl = `/tasks/${rowToUse.process_instance_id}/${rowToUse.id}`;
|
const taskUrl = `/tasks/${rowToUse.process_instance_id}/${rowToUse.id}`;
|
||||||
return (
|
return (
|
||||||
<tr key={rowToUse.id}>
|
<tr key={rowToUse.id}>
|
||||||
<td>{rowToUse.task_name}</td>
|
<td>{rowToUse.process_name}</td>
|
||||||
|
<td>{rowToUse.name}</td>
|
||||||
<td>
|
<td>
|
||||||
<Link to={taskUrl}>{rowToUse.id}</Link>
|
<Link to={taskUrl}>{rowToUse.id}</Link>
|
||||||
</td>
|
</td>
|
||||||
|
@ -46,6 +47,7 @@ export default function TaskList() {
|
||||||
<Table striped bordered>
|
<Table striped bordered>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>Process Model</th>
|
||||||
<th>Task Name</th>
|
<th>Task Name</th>
|
||||||
<th>Id</th>
|
<th>Id</th>
|
||||||
<th>Process Instance Id</th>
|
<th>Process Instance Id</th>
|
||||||
|
|
|
@ -108,6 +108,7 @@ export default function TaskShow() {
|
||||||
<main>
|
<main>
|
||||||
{buildTaskNavigation()}
|
{buildTaskNavigation()}
|
||||||
<h1>Task: {taskToUse.name}</h1>
|
<h1>Task: {taskToUse.name}</h1>
|
||||||
|
<h3>Process Model: {taskToUse.process_name}</h3>
|
||||||
<h3>status: {taskToUse.state}</h3>
|
<h3>status: {taskToUse.state}</h3>
|
||||||
<Form
|
<Form
|
||||||
formData={taskToUse.data}
|
formData={taskToUse.data}
|
||||||
|
|
Loading…
Reference in New Issue