summaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
authorVedangi Mittal <vedangimittal@vedangis-mbp.in.ibm.com>2024-04-23 11:43:23 +0300
committerGunnar Mills <gunnar@gmills.xyz>2024-05-08 22:21:44 +0300
commitdfba4e542e816712d3857e32aa52e9a930c9e889 (patch)
treee36097740a78c7f05799ed3ffd0050ef2d86d3ce /src/store
parent2b33526c41c23217365e8eb0523d182bcdee622a (diff)
downloadwebui-vue-dfba4e542e816712d3857e32aa52e9a930c9e889.tar.xz
Removed Challenge password option from Generate CSR panel
- Unable to generate Certificate Signing Request (CSR) when filling optional field-Challenge password values on Certificate page. - Hence, removed the Challenge password option from the Generate CSR panel. Change-Id: I862f024de84f34738be5e5cd22701b63c2309152 Signed-off-by: Vedangi Mittal <vedangimittal3004@gmail.com>
Diffstat (limited to 'src/store')
-rw-r--r--src/store/modules/SecurityAndAccess/CertificatesStore.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/store/modules/SecurityAndAccess/CertificatesStore.js b/src/store/modules/SecurityAndAccess/CertificatesStore.js
index 3583d7f1..666f5fd5 100644
--- a/src/store/modules/SecurityAndAccess/CertificatesStore.js
+++ b/src/store/modules/SecurityAndAccess/CertificatesStore.js
@@ -166,7 +166,6 @@ const CertificatesStore = {
keyPairAlgorithm,
keyBitLength,
keyCurveId,
- challengePassword,
contactPerson,
emailAddress,
alternateName,
@@ -187,7 +186,6 @@ const CertificatesStore = {
if (keyCurveId) data.KeyCurveId = keyCurveId;
if (keyBitLength) data.KeyBitLength = keyBitLength;
- if (challengePassword) data.ChallengePassword = challengePassword;
if (contactPerson) data.ContactPerson = contactPerson;
if (emailAddress) data.Email = emailAddress;