Merge branch 'dev' into oauth2
This commit is contained in:
@ -164,7 +164,7 @@
|
||||
const appConfig: ComputedRef<TAppConfig> = computed(
|
||||
() => store.getters[ROOT_STORE.GETTERS.APP_CONFIG]
|
||||
)
|
||||
let displayModal: Ref<string> = ref('')
|
||||
const displayModal: Ref<string> = ref('')
|
||||
const formErrors = ref(false)
|
||||
const displayUserEmailForm: Ref<boolean> = ref(false)
|
||||
const newUserEmail: Ref<string> = ref('')
|
||||
|
@ -59,7 +59,7 @@
|
||||
const fileSizeLimit = appConfig.value.max_single_file_size
|
||||
? getReadableFileSize(appConfig.value.max_single_file_size)
|
||||
: ''
|
||||
let pictureFile: Ref<File | null> = ref(null)
|
||||
const pictureFile: Ref<File | null> = ref(null)
|
||||
|
||||
function deleteUserPicture() {
|
||||
store.dispatch(AUTH_USER_STORE.ACTIONS.DELETE_PICTURE)
|
||||
|
@ -123,8 +123,8 @@
|
||||
const revocationSuccessful: ComputedRef<boolean> = computed(
|
||||
() => store.getters[OAUTH2_STORE.GETTERS.REVOCATION_SUCCESSFUL]
|
||||
)
|
||||
let displayModal: Ref<boolean> = ref(false)
|
||||
let messageToDisplay: Ref<string | null> = ref(null)
|
||||
const displayModal: Ref<boolean> = ref(false)
|
||||
const messageToDisplay: Ref<string | null> = ref(null)
|
||||
|
||||
onBeforeMount(() => {
|
||||
loadClient()
|
||||
|
@ -70,7 +70,7 @@
|
||||
})
|
||||
|
||||
function getClientsQuery(newQuery: LocationQuery): IOauth2ClientsPayload {
|
||||
let clientsQuery: IOauth2ClientsPayload = {}
|
||||
const clientsQuery: IOauth2ClientsPayload = {}
|
||||
if (newQuery.page) {
|
||||
clientsQuery.page = getNumberQueryValue(newQuery.page, defaultPage)
|
||||
}
|
||||
|
Reference in New Issue
Block a user