Client: PortalSettings: SSO: fix

This commit is contained in:
Viktor Fomin 2023-10-27 02:41:32 +03:00
parent 7463d933f1
commit 4d8bfe643e
2 changed files with 5 additions and 2 deletions

View File

@ -11,7 +11,8 @@ const StyledCertificatesTable = styled.div`
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 40px;
border-bottom: 1px solid #eceef1;
border-bottom: ${(props) =>
props.theme.client.settings.integration.sso.border};
&-cell:nth-child(n + 2) {
display: flex;
@ -30,7 +31,8 @@ const StyledCertificatesTable = styled.div`
gap: 12px;
align-items: center;
padding: 11px 0 10px;
border-bottom: 1px solid #eceef1;
border-bottom: ${(props) =>
props.theme.client.settings.integration.sso.border};
.column {
display: flex;

View File

@ -617,6 +617,7 @@ class SsoFormStore {
}
const newCertificates = await this.validateCertificate(data);
this.idpCertificates = [];
newCertificates.data.map((cert) => {
if (newCertificates.data.length > 1) {