Skip to content

Commit 2f06d5c

Browse files
authored
fix: address beginning with comma (#2215)
1 parent 49cf71d commit 2f06d5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: src/backend/templates/partials/footer.hbs

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@
6060
{{#if eventurls.location}}
6161
<li class="address">
6262
<i class="fa fa-map-marker"></i>
63-
<div>{{eventurls.orgname}}&#44;&nbsp;{{eventurls.location}}</div>
63+
{{#if eventsurls.orgname}}
64+
<div>{{eventurls.orgname}}&#44;&nbsp;{{eventurls.location}}</div>
65+
{{else}}
66+
<div>{{eventurls.location}}</div>
67+
{{/if}}
6468
</li>
6569
{{/if}}
6670
</ul>

0 commit comments

Comments
 (0)