per feedback in demo
This commit is contained in:
parent
8e36cb8f8b
commit
24f817cdc1
|
@ -29,6 +29,12 @@
|
||||||
border-color: none;
|
border-color: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make this a little less prominent so the actual human beings completing tasks stand out */
|
||||||
|
.system-user-log-entry {
|
||||||
|
color: #B0B0B0;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
|
|
|
@ -80,7 +80,11 @@ export default function ProcessInstanceLogList({ variant }: OwnProps) {
|
||||||
<>
|
<>
|
||||||
<td>{row.bpmn_task_type}</td>
|
<td>{row.bpmn_task_type}</td>
|
||||||
<td>{row.message}</td>
|
<td>{row.message}</td>
|
||||||
<td>{row.username}</td>
|
<td>
|
||||||
|
{row.username || (
|
||||||
|
<span className="system-user-log-entry">system</span>
|
||||||
|
)}
|
||||||
|
</td>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue