Customize appointment page title

This commit is contained in:
Skylar Ittner 2022-01-19 15:39:09 -07:00
parent 44c929c531
commit b794a0bd99
2 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@
<span class="if-not-md">Back</span> <span class="if-not-md">Back</span>
</a> </a>
</div> </div>
<div class="title">Book Appointment</div> <div class="title">Book {{#js_if "this.serviceid == 'shipping'"}}a Pickup{{else}}{{#js_if "this.serviceid == 'notary'"}}a Notary{{else}}Appointment{{/js_if}}{{/js_if}}</div>
</div> </div>
</div> </div>

View File

@ -164,7 +164,8 @@ var routes = [
} }
resolve({ resolve({
content: compiledPages.appointment({ content: compiledPages.appointment({
url: url url: url,
serviceid: to.params.serviceId
}) })
}, { }, {
}); });