Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Change date range separator (#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro authored and nick committed May 3, 2019
1 parent 24666c0 commit 27b769c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eventsource/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class OriginEventSource {
if (!offer.valid || offer.status === 0) {
// No need to do anything here.
} else if (offer.startDate && offer.endDate) {
booked.push(`${offer.startDate}-${offer.endDate}`)
booked.push(`${offer.startDate}/${offer.endDate}`)
}
})
} else if (listing.__typename !== 'AnnouncementListing') {
Expand Down

0 comments on commit 27b769c

Please sign in to comment.