Skip to content

Commit

Permalink
fix: dtmf overflow [WTEL-4002]
Browse files Browse the repository at this point in the history
  • Loading branch information
dlohvinov committed Nov 8, 2023
1 parent 7f1d2c9 commit 7c12dc4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/modules/call/components/wt-omni-widget-call-active.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
<call-title-wrapper>
{{ duration }}
<template #description>
{{ sessionDTMF }}
<p class="wt-omni-widget-call-active__dtmf">
{{ sessionDTMF }}
</p>
</template>
</call-title-wrapper>
<numpad
Expand Down Expand Up @@ -89,5 +91,9 @@ export default {
justify-content: center;
gap: 32px;
}
.wt-omni-widget-call-active__dtmf {
word-break: break-all;
}
}
</style>
2 changes: 1 addition & 1 deletion src/modules/call/store/call.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const getters = {
const actions = {
START_USER_AGENT: (context) => {
const socket = new JsSIP.WebSocketInterface(context.rootState.config.call.url);
JsSIP.debug.enable('JsSIP:*');
// JsSIP.debug.enable('JsSIP:*');

const { hostname } = new URL(context.rootState.config.call.url);

Expand Down

0 comments on commit 7c12dc4

Please sign in to comment.