forked from jquense/react-big-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support point-in-time events in the Agenda view (jquense#1246)
Some events may have the same date/time, and are meant to represent point-in-time events, such as deadlines. These are not all day events, but they also should not be represnted as `${startTime} - ${endTime}` since the values will be the same. This will cause an event that is not marked as all day, and where the start and end are equal, to show as: ```js // old `${startTime} - ${endTime}` // new `${startTime}` ```
- Loading branch information
1 parent
7aef31f
commit 58c39c3
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters