only show milestones for simple log view w/ burnettk

This commit is contained in:
jasquat 2023-01-17 16:13:11 -05:00
parent a3195fe1b6
commit d9f9a316db
1 changed files with 2 additions and 2 deletions

View File

@ -46,10 +46,10 @@ export default function ProcessInstanceLogList() {
return (
<tr key={rowToUse.id}>
<td data-qa="paginated-entity-id">{rowToUse.id}</td>
<td>{rowToUse.message}</td>
<td>{rowToUse.bpmn_task_name}</td>
{isDetailedView && (
<>
<td>{rowToUse.message}</td>
<td>{rowToUse.bpmn_task_identifier}</td>
<td>{rowToUse.bpmn_task_type}</td>
<td>{rowToUse.bpmn_process_identifier}</td>
@ -72,10 +72,10 @@ export default function ProcessInstanceLogList() {
<thead>
<tr>
<th>Id</th>
<th>Message</th>
<th>Task Name</th>
{isDetailedView && (
<>
<th>Message</th>
<th>Task Identifier</th>
<th>Task Type</th>
<th>Bpmn Process Identifier</th>