From b6654f985df6c150bdf30606d061c9b91a85d3d0 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Wed, 14 Jul 2021 19:15:18 +0530 Subject: [PATCH] feature(ui) - text change and hide events for live --- .../Assist/components/AssistActions/AssistActions.tsx | 2 +- frontend/app/components/Session_/Player/Controls/Controls.js | 2 +- frontend/env.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx index f42a40bb1..8ac60e4ba 100644 --- a/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx +++ b/frontend/app/components/Assist/components/AssistActions/AssistActions.tsx @@ -80,7 +80,7 @@ function AssistActions({ toggleChatWindow, userId, calling, peerConnectionStatus size="20" color={ inCall ? "red" : "gray-darkest" } /> - { inCall ? 'End Meeting' : 'Start Meeting' } + { inCall ? 'End Call' : 'Call' } } content={ `Call ${userId}` } diff --git a/frontend/app/components/Session_/Player/Controls/Controls.js b/frontend/app/components/Session_/Player/Controls/Controls.js index 1017ee46a..0c88f729e 100644 --- a/frontend/app/components/Session_/Player/Controls/Controls.js +++ b/frontend/app/components/Session_/Player/Controls/Controls.js @@ -367,7 +367,7 @@ export default class Controls extends React.Component { hasErrors={ exceptionsCount > 0 } /> } - { showStack && + { !live && showStack && toggleBottomBlock(STACKEVENTS) } diff --git a/frontend/env.js b/frontend/env.js index aeb8d1d5f..50834f538 100644 --- a/frontend/env.js +++ b/frontend/env.js @@ -13,7 +13,7 @@ const oss = { ORIGIN: () => 'window.location.origin', API_EDP: () => 'window.location.origin + "/api"', ASSETS_HOST: () => 'window.location.origin + "/assets"', - VERSION: '1.0.0', + VERSION: '1.2.0', SOURCEMAP: true, MINIO_ENDPOINT: process.env.MINIO_ENDPOINT, MINIO_PORT: process.env.MINIO_PORT,