feat: mandatory password change on login + UI fixes
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
.dialog-header.is-short.is-red
|
||||
v-icon.mr-2(color='white') mdi-file-document-box-remove-outline
|
||||
span {{$t('common:page.delete')}}
|
||||
v-card-text
|
||||
v-card-text.pt-5
|
||||
i18next.body-1(path='common:page.deleteTitle', tag='div')
|
||||
span.red--text.text--darken-2(place='title') {{pageTitle}}
|
||||
.caption {{$t('common:page.deleteSubtitle')}}
|
||||
|
@@ -3,7 +3,7 @@
|
||||
v-model='dialogOpen'
|
||||
max-width='650'
|
||||
)
|
||||
v-card.wiki-form
|
||||
v-card
|
||||
.dialog-header
|
||||
span {{$t('common:user.search')}}
|
||||
v-spacer
|
||||
@@ -14,7 +14,7 @@
|
||||
:width='2'
|
||||
v-show='searchLoading'
|
||||
)
|
||||
v-card-text
|
||||
v-card-text.pt-5
|
||||
v-text-field(
|
||||
outlined
|
||||
:label='$t(`common:user.searchPlaceholder`)'
|
||||
@@ -56,7 +56,7 @@ import searchUsersQuery from 'gql/common/common-users-query-search.gql'
|
||||
export default {
|
||||
filters: {
|
||||
initials(val) {
|
||||
return val.split(' ').map(v => v.substring(0, 1)).join()
|
||||
return val.split(' ').map(v => v.substring(0, 1)).join('')
|
||||
}
|
||||
},
|
||||
props: {
|
||||
|
Reference in New Issue
Block a user