Merge pull request #778 from popod/fix-service-details-display-in-booking-page

Fix display of service details when the service change in the booking process
This commit is contained in:
Alex Tselegidis 2020-08-15 16:07:02 +03:00 committed by GitHub
commit 6348b1af56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -156,7 +156,7 @@
<select id="select-provider" class="col-xs-12 col-sm-4 form-control"></select>
</div>
<div id="service-description" style="display:none;"></div>
<div id="service-description"></div>
</div>
</div>

View File

@ -737,7 +737,9 @@ window.FrontendBook = window.FrontendBook || {};
'text': service.description
})
.appendTo($serviceDescription);
}
if (service.duration || Number(service.price) > 0 || service.location) {
$('<br/>')
.appendTo($serviceDescription);
}