()
| 126 | }; |
| 127 | |
| 128 | const tableElement = () => { |
| 129 | return ( |
| 130 | <Table hover striped size="sm"> |
| 131 | <tbody> |
| 132 | <tr> |
| 133 | { builders !== null ? <td width="200px">Builder</td> : <></> } |
| 134 | <td width="100px">#</td> |
| 135 | <td width="150px">{buildTimeBase === BUILD_TIME_BASE_COMPLETE_TIME ? 'Completed At' : 'Started At'}</td> |
| 136 | <td width="150px">Duration</td> |
| 137 | <td width='150px'>Revision</td> |
| 138 | <td width="200px">Owners</td> |
| 139 | <td width="150px">Worker</td> |
| 140 | <td>Status</td> |
| 141 | </tr> |
| 142 | {rowElements} |
| 143 | {maybeRenderLoadMore()} |
| 144 | </tbody> |
| 145 | </Table> |
| 146 | ); |
| 147 | } |
| 148 | |
| 149 | return ( |
| 150 | <div className="bb-build-table-container"> |
no test coverage detected