From 39cd664b3c83e685a6db5b4b6c949c42ca363b13 Mon Sep 17 00:00:00 2001 From: Matt Low Date: Thu, 11 Mar 2021 11:15:43 -0700 Subject: [PATCH] Modify template to indicate when a transcription is partial --- src/template.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/template.tsx b/src/template.tsx index 21aca0c..0d22936 100644 --- a/src/template.tsx +++ b/src/template.tsx @@ -34,7 +34,12 @@ export function getTicketBody(vm: StoredVoicemail, contact?: Contact) {
- Transcription: + + Transcription:{" "} + {vm.transcriptionStatus === "CompletedPartially" ? ( + (partial) + ) : undefined} +

{vm.transcription