diff --git a/src/views/newMap/displayNew/menuDemon.vue b/src/views/newMap/displayNew/menuDemon.vue index 4bf0081db..521456516 100644 --- a/src/views/newMap/displayNew/menuDemon.vue +++ b/src/views/newMap/displayNew/menuDemon.vue @@ -168,7 +168,7 @@ export default { return this.$route.query.prdType === '09'; }, noChatBox() { - return !this.project.includes('srsandbox') || !this.project.includes('jxgm'); + return this.project.includes('srsandbox') || this.project.includes('jxgm'); } }, watch: { diff --git a/src/views/newMap/jointTrainingNew/menuDemon.vue b/src/views/newMap/jointTrainingNew/menuDemon.vue index 4211faf94..d0ea3ea60 100644 --- a/src/views/newMap/jointTrainingNew/menuDemon.vue +++ b/src/views/newMap/jointTrainingNew/menuDemon.vue @@ -199,7 +199,7 @@ export default { return this.$store.state.socket.simulationPause; }, noChatBox() { - return this.$route.query.type === 'ILW' || !this.project.includes('srsandbox') || !this.project.includes('jxgm'); + return this.$route.query.type === 'ILW' || this.project.includes('srsandbox') || this.project.includes('jxgm'); } }, watch: {