Fix/email shows false (#2879)

This commit is contained in:
Carina Wollendorfer
2022-05-25 17:42:08 +01:00
committed by GitHub
parent 49b361ab9c
commit ba4d2425cf
2 changed files with 14 additions and 12 deletions
@@ -428,12 +428,13 @@ ${getRichDescription(this.calEvent)}
<p style="color: #494949; font-weight: 400; line-height: 24px;">${
providerName || this.calEvent.location
}</p>
<p style="color: #494949; font-weight: 400; line-height: 24px;">${
(providerName === "Zoom" || providerName === "Google") &&
`
${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")}
`
}</p>
${
providerName === "Zoom" || providerName === "Google"
? `<p style="color: #494949; font-weight: 400; line-height: 24px;">
${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")}
</p>`
: ``
}
</div>
`;
}
@@ -417,12 +417,13 @@ ${getRichDescription(this.calEvent)}
<p style="color: #494949; font-weight: 400; line-height: 24px;">${
providerName || this.calEvent.location
}</p>
<p style="color: #494949; font-weight: 400; line-height: 24px;">${
(providerName === "Zoom" || providerName === "Google") &&
`
${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")}
`
}</p>
${
providerName === "Zoom" || providerName === "Google"
? `<p style="color: #494949; font-weight: 400; line-height: 24px;">
${this.calEvent.organizer.language.translate("meeting_url_provided_after_confirmed")}
</p>`
: ``
}
</div>
`;
}