From 7e28c3cf7d1e4765fbc16edb483c374972714e63 Mon Sep 17 00:00:00 2001 From: les Date: Wed, 15 Jan 2020 23:38:03 +0100 Subject: [PATCH] [fedi] improve moderation interface --- components/admin/Federation.vue | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/components/admin/Federation.vue b/components/admin/Federation.vue index 4e92f88b..b906e6f7 100644 --- a/components/admin/Federation.vue +++ b/components/admin/Federation.vue @@ -49,11 +49,11 @@ el-input(v-model='usersFilter' :placeholder="$t('admin.filter_users')") client-only el-pagination(v-if='enable_federation && users.length>perPage' :page-size='perPage' :currentPage.sync='instancePage' :total='users.length') - el-table(:data='paginatedSelectedUsers' small) + el-table(:data='paginatedSelectedUsers' small) el-table-column(label='User' width='150') template(slot-scope='data') span(slot='reference') - a(:href='data.row.object.id' target='_blank') {{data.row.object.name}} + a(:href='data.row.object.id' target='_blank') {{data.row.object.name}} small ({{data.row.object.preferredUsername}}) el-table-column(:label="$t('common.resources')" width='90') template(slot-scope='data') @@ -88,7 +88,6 @@