diff --git a/js/src/components/Account/Account.vue b/js/src/components/Account/Account.vue index bcd4a0fcc..068348637 100644 --- a/js/src/components/Account/Account.vue +++ b/js/src/components/Account/Account.vue @@ -1,177 +1,173 @@ @@ -182,7 +178,7 @@ export default { name: 'Account', data() { return { - loading: true, + actor: null, }; }, props: { @@ -191,6 +187,16 @@ export default { required: true, }, }, + apollo: { + actor: { + query: FETCH_ACTOR, + variables() { + return { + name: this.$route.params.name, + }; + }, + }, + }, created() { }, watch: {