Skip to content

Commit a4c6ae2

Browse files
committed
Set metaIdentity form input as required
1 parent f5bc169 commit a4c6ae2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/pages/domain/Saml/SamlConfigurationDetailsSectionContent.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,15 @@ function SamlConfigurationDetailsSectionContent({accountID, domainName, shouldSh
7171
autoGrowHeight
7272
maxAutoGrowHeight={variables.textInputAutoGrowMaxHeight}
7373
onValueCommitted={(metaIdentity) => {
74-
if (StringUtils.isEmptyString(metaIdentity) || metaIdentity === StringUtils.normalizeCRLF(samlMetadata.metaIdentity)) {
74+
if (metaIdentity === StringUtils.normalizeCRLF(samlMetadata.metaIdentity)) {
7575
return;
7676
}
7777
setSamlIdentity(accountID, domainName, metaIdentity);
7878
}}
7979
errorText={getLatestErrorMessage({errors: samlMetadata.samlMetadataError})}
8080
maxLength={Infinity}
8181
enabledWhenOffline={false}
82+
required
8283
/>
8384

8485
<MenuItemWithTopDescription

0 commit comments

Comments
 (0)