From 131f5a9093d33668764f0899f206e104e2689485 Mon Sep 17 00:00:00 2001 From: yecha Date: Thu, 19 May 2022 20:32:20 +0800 Subject: [PATCH] Update index.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 命名错误? isMuteVideoUserIdList => muteVideoUserIdList --- Web/src/store/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/src/store/index.js b/Web/src/store/index.js index 58908ea8..d027582c 100644 --- a/Web/src/store/index.js +++ b/Web/src/store/index.js @@ -51,8 +51,8 @@ function createStore () { }, dissolveMeeting (state) { state.meetingUserIdList = []; - state.isMuteVideoUserIdList = []; - state.isMuteAudioUserIdList = []; + state.muteVideoUserIdList = []; + state.muteAudioUserIdList = []; }, updateMuteVideoUserIdList (state, userIdList) { state.muteVideoUserIdList = userIdList;