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:
parent
b4abfaa695
commit
9864d555f2
1 changed files with 9 additions and 12 deletions
|
@ -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(
|
||||||
|
|
Loading…
Reference in a new issue