Merge "Add buildset events to buildset summary page"
This commit is contained in:
@@ -297,6 +297,24 @@ function Buildset({ buildset, timezone, tenant, user, preferences }) {
|
||||
<Flex flex={{ default: 'flex_1' }}>
|
||||
<FlexItem>
|
||||
<List style={{ listStyle: 'none' }}>
|
||||
{buildset.events.map((bs_event, idx) => (
|
||||
<IconProperty
|
||||
WrapElement={ListItem}
|
||||
icon={<OutlinedClockIcon />}
|
||||
key={idx}
|
||||
value={
|
||||
<span>
|
||||
{bs_event.description} <br />
|
||||
<i>
|
||||
{moment_tz
|
||||
.utc(bs_event.event_time)
|
||||
.tz(timezone)
|
||||
.format('YYYY-MM-DD HH:mm:ss')}
|
||||
</i>
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
))}
|
||||
<IconProperty
|
||||
WrapElement={ListItem}
|
||||
icon={<OutlinedCommentDotsIcon />}
|
||||
|
||||
Reference in New Issue
Block a user