Skip to content

Commit

Permalink
Merge branch 'OTTER-51-Researcher-Step-2' of https://github.com/safei…
Browse files Browse the repository at this point in the history
…nsights/management-app into OTTER-51-Researcher-Step-2
  • Loading branch information
jbwilson8 committed Dec 9, 2024
2 parents c7856aa + 60646d0 commit 73f1969
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/app/researcher/study/[encodedStudyId]/review/runs-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,21 @@ const RunsTable: React.FC<RunsTableProps> = ({ isActive, study }) => {
<Table.Td>{run.startedAt?.toISOString() || ''}</Table.Td>
<Table.Td align="right">
<Group>
<>
<Modal
size={800}
opened={opened}
onClose={close}
title="AWS Instructions"
centered
>
<PushInstructions
containerLocation={study.containerLocation}
runId={run.id}
/>
</Modal>
<Button onClick={open}>View Instructions</Button>
</>
{run.status == 'INITIATED' && (
<>
<Modal
Expand Down

0 comments on commit 73f1969

Please sign in to comment.