Skip to content

Commit

Permalink
optimize frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jan 2, 2024
1 parent a8a9603 commit bbdd37f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
5 changes: 3 additions & 2 deletions src/Frontend/src/components/UserManagementList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const columns : QTableProps['columns'] = [
style: 'width: 180px'
},
{
name: 'roles2',
name: 'lastSuccessfulValidationTimestamp',
required: true,
label: 'Last Successful Validation',
align: 'left',
Expand All @@ -68,7 +68,8 @@ const columns : QTableProps['columns'] = [
required: true,
label: 'Actions',
align: 'right',
field: 'actions'
field: 'actions',
style: 'width: 120px'
}
]
Expand Down
6 changes: 2 additions & 4 deletions src/Frontend/src/components/UserRoleManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,12 @@ async function removeRoleFromUser (roleName : string) {
</q-input>
<q-card
v-if="user.roles && user.roles.length > 0"
flat
bordered
>
<q-card-section class="q-pa-none">
<q-list
v-if="user.roles && user.roles.length > 0"
separator
>
<q-list separator>
<q-item-label header>
Current Roles
</q-item-label>
Expand Down

0 comments on commit bbdd37f

Please sign in to comment.