feat: enhance customization options with new 'Mes Persos' panel and improved context menus
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
v-for="msg in messages"
|
||||
:key="msg.id"
|
||||
:message="msg"
|
||||
:my-ip="myIp"
|
||||
@reply="$emit('reply', $event)"
|
||||
/>
|
||||
<div v-if="messages.length === 0" class="feed-empty">
|
||||
@@ -25,7 +26,7 @@ import type { Message } from '@/composables/useMessages';
|
||||
import MessageItem from './MessageItem.vue';
|
||||
import InlineCasinoAd from './InlineCasinoAd.vue';
|
||||
|
||||
const props = defineProps<{ messages: Message[]; hideAds?: boolean }>();
|
||||
const props = defineProps<{ messages: Message[]; hideAds?: boolean; myIp?: string }>();
|
||||
defineEmits<{ reply: [payload: { id: string; authorIp: string }] }>();
|
||||
|
||||
const listEl = ref<HTMLElement | null>(null);
|
||||
|
||||
Reference in New Issue
Block a user