Skip to content

Commit

Permalink
Merge pull request #1240 from TheGrits/patch-3
Browse files Browse the repository at this point in the history
Fix gh-1239: Update Conference Dates
  • Loading branch information
mewtaylor committed Mar 22, 2017
2 parents 306efd1 + 715b05f commit 3a299e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/conference/2017/index/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,14 @@ var ConferenceSplash = React.createClass({
<td><FormattedMessage id='conference-2017.date' /></td>
<td>
<FormattedDate
value={new Date(2017, 10, 13)}
value={new Date(2017, 10, 10)}
year='numeric'
month='long'
day='2-digit'
/>
{' - '}
<FormattedDate
value={new Date(2017, 10, 15)}
value={new Date(2017, 10, 12)}
year='numeric'
month='long'
day='2-digit'
Expand Down Expand Up @@ -459,14 +459,14 @@ var ConferenceSplash = React.createClass({
<td><FormattedMessage id='conference-2017.date' /></td>
<td>
<FormattedDate
value={new Date(2017, 5, 20)}
value={new Date(2017, 4, 20)}
year='numeric'
month='long'
day='2-digit'
/>
{' - '}
<FormattedDate
value={new Date(2017, 5, 21)}
value={new Date(2017, 4, 21)}
year='numeric'
month='long'
day='2-digit'
Expand Down

0 comments on commit 3a299e0

Please sign in to comment.