Skip to content
Snippets Groups Projects
Commit 9f32d7de authored by Tony Salomone's avatar Tony Salomone
Browse files

Add an info icon to training jobs history

parent ae9d8e8f
Branches
Tags
No related merge requests found
......@@ -25,9 +25,9 @@ import {
ClockIcon,
FileTextIcon,
GraduationCapIcon,
InfoIcon,
LineChartIcon,
Plug2Icon,
PlusCircleIcon,
PlusIcon,
Trash2Icon,
} from 'lucide-react';
......@@ -318,7 +318,7 @@ export default function TrainLoRA({ experimentInfo }) {
<Table>
<thead>
<tr>
<th style={{ width: 80}}>ID</th>
<th style={{ width: 60}}>ID</th>
<th>Details</th>
<th style={{ width: 200}}>Status</th>
<th style={{ width: 260}}></th>
......@@ -330,7 +330,13 @@ export default function TrainLoRA({ experimentInfo }) {
return (
<tr key={job.id}>
<td>
<b>{job.id}</b>
<b>{job.id}</b><br />
<InfoIcon
onClick={() => {
alert(job?.job_data?.config);
}}
/>
</td>
<td>{formatJobConfig(job)}</td>
<td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment