diff --git a/src/client/app/mobile/views/pages/user-list.vue b/src/client/app/mobile/views/pages/user-list.vue index 7440dbcb6..1c6a829cd 100644 --- a/src/client/app/mobile/views/pages/user-list.vue +++ b/src/client/app/mobile/views/pages/user-list.vue @@ -4,7 +4,7 @@
@@ -18,7 +18,8 @@ export default Vue.extend({ data() { return { fetching: true, - list: null + list: null, + users: null }; }, watch: { @@ -39,6 +40,12 @@ export default Vue.extend({ this.fetching = false; Progress.done(); + + (this as any).api('users/show', { + userIds: this.list.userIds + }).then(users => { + this.users = users; + }); }); } }