hide acc menu button in notifications
This commit is contained in:
parent
ca1581a494
commit
8b201fddbd
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<button class="menu _button" @click.stop="menu" v-tooltip="i18n.ts.menu">
|
||||
<button v-if="!hideMenu" class="menu _button" @click.stop="menu" v-tooltip="i18n.ts.menu">
|
||||
<i class="ph-dots-three-outline ph-bold ph-lg"></i>
|
||||
</button>
|
||||
<button
|
||||
|
@ -74,6 +74,7 @@ const props = withDefaults(
|
|||
user: Misskey.entities.UserDetailed;
|
||||
full?: boolean;
|
||||
large?: boolean;
|
||||
hideMenu?: boolean;
|
||||
}>(),
|
||||
{
|
||||
full: false,
|
||||
|
|
|
@ -219,6 +219,7 @@
|
|||
<MkFollowButton
|
||||
:user="notification.user"
|
||||
:full="true"
|
||||
:hideMenu="true"
|
||||
/></div
|
||||
></span>
|
||||
<span
|
||||
|
|
Loading…
Reference in a new issue