diff --git a/webapp/locales/de.json b/webapp/locales/de.json index dd6ec2185..30e77891a 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -196,7 +196,8 @@ "columns": { "name": "Name", "slug": "Slug", - "role": "Rolle" + "role": "Rolle", + "createdAt": "Erstellt am" } }, "empty": "Keine Benutzer gefunden" diff --git a/webapp/locales/en.json b/webapp/locales/en.json index 53825d83e..69e80e5bb 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -197,7 +197,8 @@ "columns": { "name": "Name", "slug": "Slug", - "role": "Role" + "role": "Role", + "createdAt": "Created at" } }, "empty": "No users found" diff --git a/webapp/pages/admin/users.vue b/webapp/pages/admin/users.vue index 4f9a0849b..0d737cfc0 100644 --- a/webapp/pages/admin/users.vue +++ b/webapp/pages/admin/users.vue @@ -43,6 +43,9 @@ {{ scope.row.slug | truncate(20) }} + @@ -92,6 +95,7 @@ export default { index: '#', name: this.$t('admin.users.table.columns.name'), slug: this.$t('admin.users.table.columns.slug'), + createdAt: this.$t('admin.users.table.columns.createdAt'), contributionsCount: { label: '🖉', align: 'right', @@ -121,6 +125,7 @@ export default { name slug role + createdAt contributionsCount commentedCount shoutedCount