Fix linting

This commit is contained in:
Wolfgang Huß 2023-07-20 12:04:37 +02:00
parent dee77df5f6
commit 883d7d89ab
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
<div class="add-chat-room-by-user-search"> <div class="add-chat-room-by-user-search">
<ds-flex class="headline"> <ds-flex class="headline">
<h2 class="title">{{ $t('chat.addRoomHeadline') }}</h2> <h2 class="title">{{ $t('chat.addRoomHeadline') }}</h2>
<base-button class="close-button" icon="close" circle @click="closeUserSearch"/> <base-button class="close-button" icon="close" circle @click="closeUserSearch" />
</ds-flex> </ds-flex>
<ds-space margin-bottom="small" /> <ds-space margin-bottom="small" />
<ds-space> <ds-space>
@ -17,7 +17,7 @@ import SelectUserSearch from '~/components/generic/SelectUserSearch/SelectUserSe
export default { export default {
name: 'AddChatRoomByUserSearch', name: 'AddChatRoomByUserSearch',
components: { components: {
SelectUserSearch SelectUserSearch,
}, },
props: { props: {
// chatRooms: { // chatRooms: {

View File

@ -48,7 +48,7 @@ export default {
}, },
showRoom(roomId) { showRoom(roomId) {
this.showChat({ showChat: true, roomID: roomId }) this.showChat({ showChat: true, roomID: roomId })
} },
}, },
} }
</script> </script>