mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Grouping of movies on the same date in the calendar agenda view (#5068)
This commit is contained in:
@@ -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(
|
||||||
|
Reference in New Issue
Block a user