Skip to content

Commit

Permalink
Merge pull request #805 from Piumal1999/APIM-3225
Browse files Browse the repository at this point in the history
Fix logic for disabling the save button in the Design Configurations
  • Loading branch information
RakhithaRR authored Oct 14, 2024
2 parents 633cbd4 + 47208bb commit e11636c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -625,8 +625,9 @@ export default function DesignConfigurations() {
)}
<Box pt={2}>
<Button
disabled={errorInAccessRoles ||
errorInRoleVisibility ||
disabled={
(apiConfig.accessControl === 'RESTRICTED' && errorInAccessRoles) ||
(apiConfig.visibility === 'RESTRICTED' && errorInRoleVisibility) ||
restricted ||
errorInTags ||
errorInExternalEndpoints}
Expand Down

0 comments on commit e11636c

Please sign in to comment.