summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-10-12 16:17:03 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-10-12 16:17:03 +0300
commit7ff6ebc6298c6c0b5e887c198de1c8bdb687f992 (patch)
treea452717fa550f8a7b7d038b08af27d912ebfcb3e
parent5de4cf54f9eaf6b02fc3236ed70605349955b64b (diff)
downloadwebui-vue-7ff6ebc6298c6c0b5e887c198de1c8bdb687f992.tar.xz
rm callenge password from factory reset
-rw-r--r--src/views/_sila/SecurityAndAccess/Certificates/ModalGenerateCsr.vue50
1 files changed, 21 insertions, 29 deletions
diff --git a/src/views/_sila/SecurityAndAccess/Certificates/ModalGenerateCsr.vue b/src/views/_sila/SecurityAndAccess/Certificates/ModalGenerateCsr.vue
index 2f2cb98f..91aee8d8 100644
--- a/src/views/_sila/SecurityAndAccess/Certificates/ModalGenerateCsr.vue
+++ b/src/views/_sila/SecurityAndAccess/Certificates/ModalGenerateCsr.vue
@@ -235,12 +235,24 @@
</b-form-group>
</b-col>
<b-col lg="6">
+ <b-form-group label-for="email-address">
+ <template #label>
+ {{ $t('pageCertificates.modal.emailAddress') }}
+ <span class="form-text d-inline"></span>
+ </template>
+ <b-form-input
+ id="email-address"
+ v-model="form.emailAddress"
+ type="text"
+ data-test-id="modalGenerateCsr-input-emailAddress"
+ />
+ </b-form-group>
+ </b-col>
+ <!-- <b-col lg="6">
<b-form-group label-for="challenge-password">
<template #label>
{{ $t('pageCertificates.modal.challengePassword') }}
- <span class="form-text d-inline">
- {{ '*' }}
- </span>
+ <span class="form-text d-inline"></span>
</template>
<b-form-input
id="challenge-password"
@@ -249,16 +261,14 @@
data-test-id="modalGenerateCsr-input-challengePassword"
/>
</b-form-group>
- </b-col>
+ </b-col> -->
</b-row>
<b-row>
- <b-col lg="6">
+ <b-col lg="12">
<b-form-group label-for="contact-person">
<template #label>
{{ $t('pageCertificates.modal.contactPerson') }}
- <span class="form-text d-inline">
- {{ '*' }}
- </span>
+ <span class="form-text d-inline"> </span>
</template>
<b-form-input
id="contact-person"
@@ -268,31 +278,13 @@
/>
</b-form-group>
</b-col>
- <b-col lg="6">
- <b-form-group label-for="email-address">
- <template #label>
- {{ $t('pageCertificates.modal.emailAddress') }}
- <span class="form-text d-inline">
- {{ '*' }}
- </span>
- </template>
- <b-form-input
- id="email-address"
- v-model="form.emailAddress"
- type="text"
- data-test-id="modalGenerateCsr-input-emailAddress"
- />
- </b-form-group>
- </b-col>
</b-row>
<b-row>
<b-col lg="12">
<b-form-group label-for="alternate-name">
<template #label>
{{ $t('pageCertificates.modal.alternateName') }}
- <span class="form-text d-inline">
- {{ '*' }}
- </span>
+ <span class="form-text d-inline"></span>
<info-tooltip
:title="
$t('pageCertificates.modal.alternateNameHelperText')
@@ -394,7 +386,7 @@ export default {
companyName: null,
companyUnit: null,
commonName: null,
- challengePassword: null,
+ // challengePassword: null,
contactPerson: null,
emailAddress: null,
alternateName: [],
@@ -430,7 +422,7 @@ export default {
companyName: { required },
companyUnit: { required },
commonName: { required },
- challengePassword: {},
+ // challengePassword: {},
contactPerson: {},
emailAddress: {},
alternateName: {},