Commit c89e2312 authored by CarlosGC1989's avatar CarlosGC1989
Browse files

Arregla error en popup de citas

parent 11737bd8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -37,14 +37,14 @@
{{#if feature.properties.startDate}}
	<div>
		<span class="propLabel">{{i18n.startDate}}: </span>
		<span class="propValue">{{DateTime feature.properties data.startDate}}</span>
		<span class="propValue">{{DateTime feature.properties.startDate}}</span>
	</div>
{{/if}}

{{#if feature.properties.endDate}}
	<div>
		<span class="propLabel">{{i18n.endDate}}: </span>
		<span class="propValue">{{DateTime feature.properties data.endDate}}</span>
		<span class="propValue">{{DateTime feature.properties.endDate}}</span>
	</div>
{{/if}}