Skip to content
Snippets Groups Projects

Transition to MastoAPI: Mute & Block and Add Mutes management tab

Merged Tae Hoon requested to merge tae/pleroma-fe:227-manage-blocks-mutes into develop
All threads resolved!
1 file
+ 13
3
Compare changes
  • Side-by-side
  • Inline
<template>
<basic-user-card :user="user">
<template slot="secondary-area">
<div class="mute-card-content-container">
<button class="btn btn-default" @click="unmuteUser" :disabled="progress" v-if="muted">
<template v-if="progress">
{{ $t('user_card.unmute_progress') }}
@@ -17,8 +17,18 @@
{{ $t('user_card.mute') }}
</template>
</button>
</template>
</div>
</basic-user-card>
</template>
<script src="./mute_card.js"></script>
\ No newline at end of file
<script src="./mute_card.js"></script>
<style lang="scss">
.mute-card-content-container {
margin-top: 0.5em;
text-align: right;
button {
width: 10em;
}
}
</style>
Loading