mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
Corrected displayed string.
This commit is contained in:
parent
4fd5162a05
commit
4a0ee51122
1 changed files with 1 additions and 2 deletions
|
@ -558,8 +558,7 @@ window.FrontendBook = window.FrontendBook || {};
|
||||||
}
|
}
|
||||||
|
|
||||||
if (service.duration != '' && service.duration != null) {
|
if (service.duration != '' && service.duration != null) {
|
||||||
html += '[' + EALang.duration + ' ' + service.duration
|
html += '[' + EALang.duration + ' ' + service.duration + ' ' + EALang.minutes + ']';
|
||||||
+ ' ' + EALang.minutes'] + ';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (service.price != '' && service.price != null) {
|
if (service.price != '' && service.price != null) {
|
||||||
|
|
Loading…
Reference in a new issue