@@ -58,6 +58,7 @@ import {
5858} from "./TaskRunStatus" ;
5959import { MachineIcon } from "~/assets/icons/MachineIcon" ;
6060import { MachineLabelCombo } from "~/components/MachineLabelCombo" ;
61+ import { MachineTooltipInfo } from "~/components/MachineTooltipInfo" ;
6162
6263type RunsTableProps = {
6364 total : number ;
@@ -207,63 +208,7 @@ export function TaskRunsTable({
207208 < TableHeaderCell > Compute</ TableHeaderCell >
208209 </ >
209210 ) }
210- < TableHeaderCell
211- className = "pl-4"
212- tooltip = {
213- < div className = "flex max-w-xs flex-col gap-4 p-1" >
214- < div >
215- < div className = "mb-0.5 flex items-center gap-1.5" >
216- < MachineIcon preset = "no-machine" />
217- < Header3 > No machine yet</ Header3 >
218- </ div >
219- < Paragraph variant = "small" className = "text-text-dimmed" >
220- The machine is set at the moment the run is dequeued.
221- </ Paragraph >
222- </ div >
223- < div >
224- < div className = "mb-0.5 flex items-center gap-1.5" >
225- < MachineIcon preset = "micro" />
226- < Header3 > Micro</ Header3 >
227- </ div >
228- < Paragraph variant = "small" className = "text-text-dimmed" >
229- The smallest and cheapest machine available.
230- </ Paragraph >
231- </ div >
232- < div >
233- < div className = "mb-0.5 flex items-center gap-1.5" >
234- < MachineIcon preset = "small-1x" /> < Header3 > Small 1x & 2 x </ Header3 >
235- </ div >
236- < Paragraph variant = "small" className = "text-text-dimmed" >
237- Smaller machines for basic workloads. Small 1x is the default machine.
238- </ Paragraph >
239- </ div >
240- < div >
241- < div className = "mb-0.5 flex items-center gap-1.5" >
242- < MachineIcon preset = "medium-1x" /> < Header3 > Medium 1x & 2 x </ Header3 >
243- </ div >
244- < Paragraph variant = "small" className = "text-text-dimmed" >
245- Medium machines for more demanding workloads.
246- </ Paragraph >
247- </ div >
248- < div >
249- < div className = "mb-0.5 flex items-center gap-1.5" >
250- < MachineIcon preset = "large-1x" /> < Header3 > Large 1x & 2 x </ Header3 >
251- </ div >
252- < Paragraph variant = "small" className = "text-text-dimmed" >
253- Larger machines for the most demanding workloads such as video processing. The
254- larger the machine, the more expensive it is.
255- </ Paragraph >
256- </ div >
257- < LinkButton
258- to = { docsPath ( "machines#machine-configurations" ) }
259- variant = "docs/small"
260- LeadingIcon = { BookOpenIcon }
261- >
262- Read docs
263- </ LinkButton >
264- </ div >
265- }
266- >
211+ < TableHeaderCell className = "pl-4" tooltip = { < MachineTooltipInfo /> } >
267212 Machine
268213 </ TableHeaderCell >
269214 < TableHeaderCell > Test</ TableHeaderCell >
0 commit comments