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,