mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-24 07:08:16 +00:00
per feedback in demo
This commit is contained in:
parent
8e36cb8f8b
commit
24f817cdc1
@ -29,6 +29,12 @@
|
||||
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 {
|
||||
font-weight: 400;
|
||||
font-size: 28px;
|
||||
|
@ -80,7 +80,11 @@ export default function ProcessInstanceLogList({ variant }: OwnProps) {
|
||||
<>
|
||||
<td>{row.bpmn_task_type}</td>
|
||||
<td>{row.message}</td>
|
||||
<td>{row.username}</td>
|
||||
<td>
|
||||
{row.username || (
|
||||
<span className="system-user-log-entry">system</span>
|
||||
)}
|
||||
</td>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user