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

Display detailed status of importable models.

parent 1e2ac44f
Branches
Tags
No related merge requests found
...@@ -191,8 +191,7 @@ export default function ImportModelsModal({ open, setOpen}) { ...@@ -191,8 +191,7 @@ export default function ImportModelsModal({ open, setOpen}) {
<th style={{ width: 20, padding: 12 }}> </th> <th style={{ width: 20, padding: 12 }}> </th>
<th style={{ width: 175, padding: 12 }}>Model ID</th> <th style={{ width: 175, padding: 12 }}>Model ID</th>
<th style={{ width: 100, padding: 12 }}>Source</th> <th style={{ width: 100, padding: 12 }}>Source</th>
<th style={{ width: 120, padding: 12 }}>Architecture</th> <th style={{ width: 200, padding: 12 }}>Status</th>
<th style={{ width: 75, padding: 12 }}>Supported</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
...@@ -221,12 +220,7 @@ export default function ImportModelsModal({ open, setOpen}) { ...@@ -221,12 +220,7 @@ export default function ImportModelsModal({ open, setOpen}) {
</td> </td>
<td> <td>
<Typography ml={2} fontWeight={row.supported ? "lg" : "sm"}> <Typography ml={2} fontWeight={row.supported ? "lg" : "sm"}>
{row.architecture} {row.status}
</Typography>
</td>
<td>
<Typography ml={2} fontWeight={row.supported ? "lg" : "sm"}>
{row.supported ? "Yes" : "No"}
</Typography> </Typography>
</td> </td>
</tr> </tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment