1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-27 02:09:59 +00:00

Fixed: Grouping of movies on the same date in the calendar agenda view (#5068)

This commit is contained in:
nitsua 2020-09-26 12:18:35 -04:00 committed by GitHub
parent b4abfaa695
commit 9864d555f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,8 +92,6 @@ class AgendaEvent extends Component {
)} )}
to={link} to={link}
> >
{
showDate &&
<div className={styles.date}> <div className={styles.date}>
<div className={styles.dateIcon}> <div className={styles.dateIcon}>
<Icon <Icon
@ -101,9 +99,8 @@ class AgendaEvent extends Component {
kind={kinds.DEFAULT} kind={kinds.DEFAULT}
/> />
</div> </div>
{startTime.format(longDateFormat)} {(showDate) ? startTime.format(longDateFormat) : null}
</div> </div>
}
<div <div
className={classNames( className={classNames(