Skip to content

Commit

Permalink
fix: Timeline now also shows year if event spans multiple years in Ev…
Browse files Browse the repository at this point in the history
…ent view (#533)
  • Loading branch information
deodorhunter authored Feb 14, 2024
1 parent af9dfc7 commit 30cf623
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@

- Risolto un problema riguardante la visualizzazione delle date nelle card che rappresentano un CT Evento nei vari listati nel caso in cui l'evento si sviluppi su anni diversi

- Risolto un problema di visualizzazione per la sezione Date e Orari nel CT Evento quando l'evento si sviluppa su anni diversi, ora viene mostrato anche l'anno se si rientra in questa casistica
- Nel blocco elenco, sono stati sistemati i filtri per percorso quando si clicca sul bottone configurato.

## Versione 11.4.1 (08/02/2024)
Expand Down
6 changes: 6 additions & 0 deletions src/components/ItaliaTheme/View/Commons/Dates.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ const Dates = ({ content, show_image, moment: momentlib, rrule }) => {
{start.format('DD')}
</span>
<span className="point-month">{start.format('MMMM')}</span>
{!start.isSame(end, 'year') && (
<span className="point-month">{start.format('YYYY')}</span>
)}
</div>
<div className="point-list-content">
<Card
Expand Down Expand Up @@ -105,6 +108,9 @@ const Dates = ({ content, show_image, moment: momentlib, rrule }) => {
{end.format('DD')}
</span>
<span className="point-month">{end.format('MMMM')}</span>
{!end.isSame(start, 'year') && (
<span className="point-month">{end.format('YYYY')}</span>
)}
</div>
<div className="point-list-content">
<Card
Expand Down

0 comments on commit 30cf623

Please sign in to comment.