diff --git a/admin/src/components/Federation/FederationVisualizeItem.vue b/admin/src/components/Federation/FederationVisualizeItem.vue
index 7b2d6c5d8..cbfe53ef0 100644
--- a/admin/src/components/Federation/FederationVisualizeItem.vue
+++ b/admin/src/components/Federation/FederationVisualizeItem.vue
@@ -3,14 +3,19 @@
{{ item.apiVersion }}
- {{ item.createdAt }}
- {{ item.lastAnnouncedAt }}
- {{ item.verifiedAt }}
- {{ item.lastErrorAt }}
+ {{ distanceDate(item.createdAt) }}
+ {{ distanceDate(item.lastAnnouncedAt) }}
+ {{ distanceDate(item.verifiedAt) }}
+ {{ distanceDate(item.lastErrorAt) }}
diff --git a/admin/src/graphql/updateHomeCommunity.js b/admin/src/graphql/updateHomeCommunity.js
index bce09f4d0..a43d6edd2 100644
--- a/admin/src/graphql/updateHomeCommunity.js
+++ b/admin/src/graphql/updateHomeCommunity.js
@@ -2,6 +2,8 @@ import gql from 'graphql-tag'
export const updateHomeCommunity = gql`
mutation ($uuid: String!, $gmsApiKey: String!) {
- updateHomeCommunity(uuid: $uuid, gmsApiKey: $gmsApiKey)
+ updateHomeCommunity(uuid: $uuid, gmsApiKey: $gmsApiKey) {
+ id
+ }
}
`