This commit is contained in:
Ulf Gebhardt 2023-07-06 13:09:55 +02:00
parent 610d279465
commit 27de68e136
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
3 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@
</template>
<script>
import { roomQuery } from '~/graphql/Rooms'
// import { roomQuery } from '~/graphql/Rooms'
import { messageQuery } from '~/graphql/Messages'
export default {

View File

@ -57,14 +57,14 @@
<script>
import CounterIcon from '~/components/_new/generic/CounterIcon/CounterIcon'
import Dropdown from '~/components/Dropdown'
import NotificationList from '../NotificationList/NotificationList'
// import NotificationList from '../NotificationList/NotificationList'
export default {
name: 'ChatNotificationMenu',
components: {
CounterIcon,
Dropdown,
NotificationList,
// NotificationList,
},
data() {
return {

View File

@ -7,7 +7,6 @@ export const state = () => {
export const mutations = {
SET_OPEN_CHAT(state, ctx) {
console.log('SET_OPEN_CHAT', ctx)
state.showChat = ctx.showChat || false
state.roomID = ctx.roomID || 'u0'
},