Skip to content

Commit

Permalink
Release/2.2.1 (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
loreina authored Jan 3, 2020
1 parent a980239 commit 70c4411
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.2.1](https://github.com/hackmcgill/dashboard/tree/2.2.1) - 2020-01-03

### Fixed

- Fixed where background image renders on status page
- Fixed close date to be midnight instead of noon

## [2.2.0](https://github.com/hackmcgill/dashboard/tree/2.2.0) - 2020-01-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hackerapi-frontend",
"homepage": "https://app.mchacks.ca",
"version": "2.2.0",
"version": "2.2.1",
"private": true,
"dependencies": {
"@rebass/grid": "^6.0.0-7",
Expand Down
2 changes: 1 addition & 1 deletion src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const WITHDRAWN_STATUS_TEXT =
export const CHECKED_IN_STATUS_TEXT = 'You’re checked-in and ready to go!';

// Application management
export const APPLICATION_CLOSE_TIME = 1578070799000; // Jan 3, 2020 11:59:59PM EST
export const APPLICATION_CLOSE_TIME = 1578113999000; // Jan 3, 2020 11:59:59PM EST
export const DEADLINE_PASSED_LABEL =
'Sorry, we are no longer accepting applications at this time.';
export const BARRIERS_LABEL = 'Would you require any accommodations?';
Expand Down
12 changes: 6 additions & 6 deletions src/features/Status/StatusPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,16 @@ class StatusPage extends React.Component<IStatusPageProps, {}> {
</Paragraph>
</Flex>
)}
<BackgroundImage
right={'0px'}
bottom={'0px'}
src={Background}
imgHeight={'87%'}
/>
</div>
) : (
<ConfirmationEmailSentComponent />
)}
<BackgroundImage
right={'0px'}
bottom={'0px'}
src={Background}
imgHeight={'87%'}
/>
</Box>
</Flex>
);
Expand Down

0 comments on commit 70c4411

Please sign in to comment.