Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cypress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
# after the test run completes, store videos and any screenshots
# NOTE: screenshots will be generated only if E2E test failed
- name: Upload Screenshots
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
# Test run video was always captured, so always upload (implicit means only on success)
- name: Upload Videos
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-videos
Expand Down
11 changes: 6 additions & 5 deletions components/admin-tabs/Applicants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,12 @@ const Applicants: React.FC = () => {

return (
<div className={'applicants'}>
<div className="title-container">
<h3 className="title">{ADMIN_TABS.VIEW_AND_MODIFY_APPLICANTS}</h3>
<ExportButton cb={downloadApplicationCsv} text="Export Application Responses" />
<ExportButton cb={downloadPostAcceptanceCsv} text="Export Post-Acceptance Responses" />
</div>
<div className="title-container">
<h3 className="title">{ADMIN_TABS.VIEW_AND_MODIFY_APPLICANTS}</h3>
<ExportButton cb={downloadApplicationCsv} text="Export Application Responses" />
<ExportButton cb={downloadPostAcceptanceCsv} text="Export Post-Acceptance Responses" />
</div>
<Button className="clear-button">Clear Applicant Data</Button>
<Table
size={'small'}
className={'applicants'}
Expand Down
17 changes: 14 additions & 3 deletions styles/pages/_Admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,27 @@
.title-container {
display: flex;
flex-direction: row;



.title {
margin-right: auto;
}



.export-button {
margin-left: 10px;
}
}
}
.clear-button {
background-color: red;
color:white;
margin-left: 1045px;
}
.clear-button:hover {
background-color: lightcoral;
}
}


.ant-select-dropdown {
zoom: 1 !important;
Expand Down
Loading