2025-01-16 20:14:05 +02:00
|
|
|
<template>
|
2026-06-03 02:19:25 +03:00
|
|
|
<ConfirmModal
|
2025-01-16 20:14:05 +02:00
|
|
|
v-if="showing"
|
|
|
|
|
:title="$t('user_card.mute_confirm_title')"
|
|
|
|
|
:confirm-text="$t('user_card.mute_confirm_accept_button')"
|
|
|
|
|
:cancel-text="$t('user_card.mute_confirm_cancel_button')"
|
|
|
|
|
@accepted="doMute"
|
|
|
|
|
@cancelled="hide"
|
|
|
|
|
>
|
|
|
|
|
<i18n-t
|
|
|
|
|
:keypath="keypath"
|
|
|
|
|
tag="div"
|
|
|
|
|
>
|
|
|
|
|
<template #domain>
|
|
|
|
|
<span v-text="domain" />
|
|
|
|
|
</template>
|
|
|
|
|
<template #user>
|
|
|
|
|
<span v-text="user.screen_name_ui" />
|
|
|
|
|
</template>
|
|
|
|
|
</i18n-t>
|
2026-06-03 02:19:25 +03:00
|
|
|
</ConfirmModal>
|
2025-01-16 20:14:05 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script src="./mute_confirm.js" />
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
.expiry-amount {
|
|
|
|
|
width: 4em;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
</style>
|