summaryrefslogtreecommitdiff
path: root/src/client/app/common/views/components/avatars.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/app/common/views/components/avatars.vue')
-rw-r--r--src/client/app/common/views/components/avatars.vue27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/client/app/common/views/components/avatars.vue b/src/client/app/common/views/components/avatars.vue
deleted file mode 100644
index 0dc1ece3bf..0000000000
--- a/src/client/app/common/views/components/avatars.vue
+++ /dev/null
@@ -1,27 +0,0 @@
-<template>
-<div>
- <mk-avatar v-for="user in us" :user="user" :key="user.id" style="width:32px;height:32px;"/>
-</div>
-</template>
-
-<script lang="ts">
-import Vue from 'vue';
-
-export default Vue.extend({
- props: {
- userIds: {
- required: true
- },
- },
- data() {
- return {
- us: []
- };
- },
- async created() {
- this.us = await this.$root.api('users/show', {
- userIds: this.userIds
- });
- }
-});
-</script>