From 3ff9120070607d3bbc907693002dcb0ef76f2a15 Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Tue, 24 Feb 2026 21:09:39 +0700 Subject: [PATCH] fix: export isCommCallPlaying from useCallAudio composable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same issue as isCommCallPlayable — used in template but not exported/destructured. Co-Authored-By: Claude Opus 4.6 --- frontend/app/components/workspace/CrmWorkspaceApp.vue | 1 + frontend/app/composables/useCallAudio.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/app/components/workspace/CrmWorkspaceApp.vue b/frontend/app/components/workspace/CrmWorkspaceApp.vue index b7a4e43..13b037b 100644 --- a/frontend/app/components/workspace/CrmWorkspaceApp.vue +++ b/frontend/app/components/workspace/CrmWorkspaceApp.vue @@ -278,6 +278,7 @@ const { callTranscriptText, callTranscriptError, isCommCallPlayable, + isCommCallPlaying, ensureCommCallWave, destroyCommCallWave, destroyAllCommCallWaves, diff --git a/frontend/app/composables/useCallAudio.ts b/frontend/app/composables/useCallAudio.ts index d823da2..7a46c40 100644 --- a/frontend/app/composables/useCallAudio.ts +++ b/frontend/app/composables/useCallAudio.ts @@ -433,6 +433,7 @@ export function useCallAudio() { stopEventArchiveRecording, toggleEventArchiveRecording, isCommCallPlayable, + isCommCallPlaying, setCommCallWaveHost, }; }