disable the per-user feed on mobile

This commit is contained in:
Hazel K 2024-10-02 00:45:41 -04:00
parent 09b0de13bf
commit 93a4008d42
2 changed files with 28 additions and 7 deletions

View file

@ -4,7 +4,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div :class="$style.root" @click="$emit('select', note.userId)">
<div :class="$style.root" @click="$emit('select', note.user)">
<div :class="$style.avatar">
<MkAvatar :class="$style.icon" :user="note.user" indictor/>
</div>
@ -35,7 +35,7 @@ defineProps<{
}>();
defineEmits<{
(event: 'select', userId: string): void
(event: 'select', user: Misskey.entities.UserLite): void
}>();
</script>