per feedback in demo

This commit is contained in:
burnettk 2023-03-02 08:34:15 -05:00
parent 8e36cb8f8b
commit 24f817cdc1
No known key found for this signature in database
2 changed files with 11 additions and 1 deletions

View File

@ -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;

View File

@ -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>
</> </>
); );
} }