Skip to content
Snippets Groups Projects
Commit bc3c7e9d authored by Mathieu Ponton's avatar Mathieu Ponton
Browse files

Merge branch 'retour-recette-carto-2' into 'dev'

fix(carto): missing slash in opening hours

See merge request !754
parents 68ffcdf8 913877a0
No related branches found
No related tags found
2 merge requests!783V3.0.0,!754fix(carto): missing slash in opening hours
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
</div> </div>
<div *ngIf="!day.value.open" class="openingTime">Fermé</div> <div *ngIf="!day.value.open" class="openingTime">Fermé</div>
<div *ngIf="day.value.open" class="openingTime"> <div *ngIf="day.value.open" class="openingTime">
<span *ngFor="let timeRange of day.value.time"> <ng-container *ngFor="let timeRange of day.value.time; let isLast = last">
{{ timeRange.formatOpeningDate() }} - {{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
{{ timeRange.formatClosingDate() }} <span *ngIf="!isLast"> / </span>
</span> </ng-container>
</div> </div>
</li> </li>
</ul> </ul>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment