From 2e7e2b1e8347b240a653d11f4271eb8d1f1a9d4a Mon Sep 17 00:00:00 2001 From: lucasferreiralimax Date: Sun, 20 Oct 2024 22:20:40 -0300 Subject: [PATCH] add alert content transcript --- src/app/app.component.html | 2 +- src/app/app.component.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/app.component.html b/src/app/app.component.html index 662cf58..cbc566c 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -66,7 +66,7 @@

Transcript Results

> - diff --git a/src/app/app.component.ts b/src/app/app.component.ts index b4167d6..972e4ce 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -47,4 +47,8 @@ export class AppComponent { returnVoiceTranscript(transcript: string) { this.voiceTextTranscript = transcript; } + + alertExampleButton() { + alert(this.voiceTextTranscript); + } }