Merge pull request #412 from ONLYOFFICE/bugfix/Bug66413

bugfix/Bug66413
This commit is contained in:
Alexey Safronov 2024-05-17 14:09:16 +04:00 committed by GitHub
commit c24bc8f655
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,7 +65,7 @@ const Certificates = (props) => {
spShowAdditionalParameters,
idpVerifyAlgorithm,
spEncryptAlgorithm,
spDecryptAlgorithm,
spSigningAlgorithm,
isLoadingXml,
isDisabledSpSigning,
isDisabledSpEncrypt,
@ -186,7 +186,7 @@ const Certificates = (props) => {
name="spSigningAlgorithm"
options={verifyAlgorithmsOptions}
tabIndex={14}
value={spEncryptAlgorithm}
value={spSigningAlgorithm}
/>
<SsoComboBox
@ -195,7 +195,7 @@ const Certificates = (props) => {
name={"spEncryptAlgorithm"}
options={decryptAlgorithmsOptions}
tabIndex={15}
value={spDecryptAlgorithm}
value={spEncryptAlgorithm}
/>
</>
)}
@ -220,7 +220,7 @@ export default inject(({ ssoStore }) => {
spShowAdditionalParameters,
idpVerifyAlgorithm,
spEncryptAlgorithm,
spDecryptAlgorithm,
spSigningAlgorithm,
isLoadingXml,
isDisabledSpSigning,
isDisabledSpEncrypt,
@ -237,7 +237,7 @@ export default inject(({ ssoStore }) => {
spShowAdditionalParameters,
idpVerifyAlgorithm,
spEncryptAlgorithm,
spDecryptAlgorithm,
spSigningAlgorithm,
isLoadingXml,
isDisabledSpSigning,
isDisabledSpEncrypt,