Skip to content
Snippets Groups Projects
Commit 2b0be042 authored by ali asaria's avatar ali asaria
Browse files

align-right

parent 518af766
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,10 @@ const EvalJobsTable = () => { ...@@ -125,7 +125,10 @@ const EvalJobsTable = () => {
<RenderScore score={job?.job_data?.score} /> <RenderScore score={job?.job_data?.score} />
</td> </td>
<td> <td>
<ButtonGroup variant="soft"> <ButtonGroup
variant="soft"
sx={{ justifyContent: 'flex-end' }}
>
<Button <Button
onClick={() => { onClick={() => {
setViewOutputFromJob(job?.id); setViewOutputFromJob(job?.id);
......
...@@ -74,7 +74,10 @@ export default function EvalTasksTable({ ...@@ -74,7 +74,10 @@ export default function EvalTasksTable({
</td> </td>
<td>{evaluations.plugin}</td> <td>{evaluations.plugin}</td>
<td style={{ textAlign: 'right' }}> <td style={{ textAlign: 'right' }}>
<ButtonGroup variant="soft"> <ButtonGroup
variant="soft"
sx={{ justifyContent: 'flex-end' }}
>
<Button <Button
startDecorator={<PlayIcon />} startDecorator={<PlayIcon />}
variant="soft" variant="soft"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment