Skip to content

Commit 70c4411

Browse files
authored
Release/2.2.1 (#789)
1 parent a980239 commit 70c4411

5 files changed

Lines changed: 16 additions & 9 deletions

File tree

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.1](https://github.com/hackmcgill/dashboard/tree/2.2.1) - 2020-01-03
9+
10+
### Fixed
11+
12+
- Fixed where background image renders on status page
13+
- Fixed close date to be midnight instead of noon
14+
815
## [2.2.0](https://github.com/hackmcgill/dashboard/tree/2.2.0) - 2020-01-01
916

1017
### Added

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hackerapi-frontend",
33
"homepage": "https://app.mchacks.ca",
4-
"version": "2.2.0",
4+
"version": "2.2.1",
55
"private": true,
66
"dependencies": {
77
"@rebass/grid": "^6.0.0-7",

src/config/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const WITHDRAWN_STATUS_TEXT =
6464
export const CHECKED_IN_STATUS_TEXT = 'You’re checked-in and ready to go!';
6565

6666
// Application management
67-
export const APPLICATION_CLOSE_TIME = 1578070799000; // Jan 3, 2020 11:59:59PM EST
67+
export const APPLICATION_CLOSE_TIME = 1578113999000; // Jan 3, 2020 11:59:59PM EST
6868
export const DEADLINE_PASSED_LABEL =
6969
'Sorry, we are no longer accepting applications at this time.';
7070
export const BARRIERS_LABEL = 'Would you require any accommodations?';

src/features/Status/StatusPage.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,16 @@ class StatusPage extends React.Component<IStatusPageProps, {}> {
9595
</Paragraph>
9696
</Flex>
9797
)}
98+
<BackgroundImage
99+
right={'0px'}
100+
bottom={'0px'}
101+
src={Background}
102+
imgHeight={'87%'}
103+
/>
98104
</div>
99105
) : (
100106
<ConfirmationEmailSentComponent />
101107
)}
102-
<BackgroundImage
103-
right={'0px'}
104-
bottom={'0px'}
105-
src={Background}
106-
imgHeight={'87%'}
107-
/>
108108
</Box>
109109
</Flex>
110110
);

0 commit comments

Comments
 (0)