Modify template to indicate when a transcription is partial

This commit is contained in:
Matt Low 2021-03-11 11:15:43 -07:00
parent 1052dfc1b1
commit 39cd664b3c

View File

@ -34,7 +34,12 @@ export function getTicketBody(vm: StoredVoicemail, contact?: Contact) {
</div> </div>
<br /> <br />
<div> <div>
<strong>Transcription: </strong> <span>
<b>Transcription:</b>{" "}
{vm.transcriptionStatus === "CompletedPartially" ? (
<i>(partial)</i>
) : undefined}
</span>
<p> <p>
<i> <i>
{vm.transcription {vm.transcription