Skip to content

Commit

Permalink
Remove last login from users table
Browse files Browse the repository at this point in the history
  • Loading branch information
JuampiRombola committed Jul 30, 2021
1 parent 8853e70 commit a3d4531
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/UsersTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ const USER_SORT_ENUM = {
blocked: 'IS_BLOCKED',
username: 'USERNAME',
email: 'EMAIL',
creationDateTime: 'CREATION_DATE_TIME',
lastLogin: 'LAST_LOGIN'
creationDateTime: 'CREATION_DATE_TIME'
}
export default {
Expand All @@ -153,7 +152,6 @@ export default {
{ text: 'Nombre de usuario', sortable: true, value: 'username' },
{ text: 'Email', sortable: true, value: 'email' },
{ text: 'Fecha de creación', sortable: true, value: 'creationDateTime' },
{ text: 'Último ingreso', sortable: true, value: 'lastLogin' },
{ text: 'Rol', sortable: false, value: 'rol' },
{ text: 'Detalles', align: 'end', sortable: false, value: 'actions' }
],
Expand Down

0 comments on commit a3d4531

Please sign in to comment.