MCPcopy
hub / github.com/buildbot/buildbot / tableElement

Function tableElement

www/base/src/components/BuildsTable/BuildsTable.tsx:128–147  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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">

Callers 1

BuildsTable.tsxFile · 0.70

Calls 1

maybeRenderLoadMoreFunction · 0.70

Tested by

no test coverage detected