Update some styles and fix channel settings

This commit is contained in:
2025-08-12 03:45:52 +02:00
parent 3edab7fbd7
commit 9f0943748f
7 changed files with 108 additions and 174 deletions

View File

@@ -18,6 +18,7 @@
:current-channel-id="currentChannelId"
:unread-counts="unreadCounts"
@select-channel="$emit('select-channel', $event)"
@channel-info="$emit('channel-info', $event)"
/>
</div>
@@ -50,6 +51,7 @@ defineProps<Props>()
defineEmits<{
'create-channel': []
'select-channel': [channelId: number]
'channel-info': [channel: Channel]
'settings': []
}>()
</script>