Merge pull request #2925 from Safelite/feature/CASH-1535
CASH-1535: Styling updates
This commit is contained in:
commit
057776c239
1 changed files with 3 additions and 3 deletions
|
|
@ -109,16 +109,16 @@ export default {
|
|||
);
|
||||
tokens.forEach((token) => {
|
||||
if (token.includes(INLINE_SERVICETYPE_TOKEN)) {
|
||||
const serviceType = "<b>" + this.getServiceType + "</b>";
|
||||
const serviceType = "<strong>" + this.getServiceType + "</strong>";
|
||||
tokens.splice(tokens.indexOf(token), 1, serviceType);
|
||||
} else if (token.includes(INLINE_DAY_TOKEN) && this.selectedAppontment.date) {
|
||||
const day =
|
||||
"<b>" +
|
||||
"<strong>" +
|
||||
new Date(this.selectedAppontment.date).toLocaleDateString("en-US", {
|
||||
weekday: "long",
|
||||
timeZone: "UTC",
|
||||
}) +
|
||||
"</b>";
|
||||
"</strong>";
|
||||
tokens.splice(tokens.indexOf(token), 1, day);
|
||||
} else if (token.includes(INLINE_DATE_TOKEN) && this.selectedAppontment.date) {
|
||||
const date = new Date(this.selectedAppontment.date).toLocaleDateString(
|
||||
|
|
|
|||
Loading…
Reference in a new issue