Skip to content

Commit

Permalink
re-add code that was removed as a result of the previous revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
jbwilson8 committed Dec 4, 2024
1 parent 4b74016 commit 60646d0
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 @@ -79,6 +79,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 opened={opened} onClose={close} title="AWS Instructions" centered>
Expand Down

0 comments on commit 60646d0

Please sign in to comment.