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

fix(carto): missing slash in opening hours

parent b56b69a2
Branches
Tags
2 merge requests!783V3.0.0,!754fix(carto): missing slash in opening hours
......@@ -6,10 +6,10 @@
</div>
<div *ngIf="!day.value.open" class="openingTime">Fermé</div>
<div *ngIf="day.value.open" class="openingTime">
<span *ngFor="let timeRange of day.value.time">
{{ timeRange.formatOpeningDate() }} -
{{ timeRange.formatClosingDate() }}
</span>
<ng-container *ngFor="let timeRange of day.value.time; let isLast = last">
{{ timeRange.formatOpeningDate() }} - {{ timeRange.formatClosingDate() }}
<span *ngIf="!isLast"> / </span>
</ng-container>
</div>
</li>
</ul>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment