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> </template>
<script> <script>
import { roomQuery } from '~/graphql/Rooms' // import { roomQuery } from '~/graphql/Rooms'
import { messageQuery } from '~/graphql/Messages' import { messageQuery } from '~/graphql/Messages'
export default { export default {

View File

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

View File

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