mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 09:49:00 +00:00
Fixed: Grouping of movies on the same date in the calendar agenda view (#5068)
This commit is contained in:
parent
b4abfaa695
commit
9864d555f2
1 changed files with 9 additions and 12 deletions
|
@ -92,8 +92,6 @@ class AgendaEvent extends Component {
|
|||
)}
|
||||
to={link}
|
||||
>
|
||||
{
|
||||
showDate &&
|
||||
<div className={styles.date}>
|
||||
<div className={styles.dateIcon}>
|
||||
<Icon
|
||||
|
@ -101,9 +99,8 @@ class AgendaEvent extends Component {
|
|||
kind={kinds.DEFAULT}
|
||||
/>
|
||||
</div>
|
||||
{startTime.format(longDateFormat)}
|
||||
{(showDate) ? startTime.format(longDateFormat) : null}
|
||||
</div>
|
||||
}
|
||||
|
||||
<div
|
||||
className={classNames(
|
||||
|
|
Loading…
Reference in a new issue