diff --git a/src/components/CallView/CallView.vue b/src/components/CallView/CallView.vue index 6d50e514816a..526c096cdc64 100644 --- a/src/components/CallView/CallView.vue +++ b/src/components/CallView/CallView.vue @@ -13,7 +13,7 @@ :local-shared-data="localSharedData" /> - - - - {{ changeViewText }} - - state.isViewerOverlay, isGrid: (state) => state.isGrid, isStripeOpen: (state) => state.isStripeOpen, + isEmptyCallView: (state) => state.isEmptyCallView, lastIsGrid: (state) => state.lastIsGrid, lastIsStripeOpen: (state) => state.lastIsStripeOpen, presentationStarted: (state) => state.presentationStarted, @@ -68,6 +70,9 @@ const mutations = { isStripeOpen(state, value) { state.isStripeOpen = value }, + isEmptyCallView(state, value) { + state.isEmptyCallView = value + }, lastIsGrid(state, value) { state.lastIsGrid = value }, @@ -231,6 +236,10 @@ const actions = { dismissQualityWarningTooltip(context) { context.commit('setQualityWarningTooltipDismissed', { qualityWarningTooltipDismissed: true }) }, + + isEmptyCallView(context, value) { + context.commit('isEmptyCallView', value) + }, } export default { state, mutations, getters, actions }