Skip to content

Commit

Permalink
Merge pull request #574 from GluuFederation/admin-ui-issue-573
Browse files Browse the repository at this point in the history
fix: error in creating scope #573
  • Loading branch information
mjatin-dev authored Nov 2, 2022
2 parents b535a46 + 9c09bef commit 4bda413
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function ScopeForm({ scope, scripts, attributes, handleSubmit }) {
onSubmit={(values) => {
const result = Object.assign(scope, values)
result['id'] = result.id
result['creatorType'] = 'USER'
result['creatorType'] = 'user'
result['creatorId'] = authReducer.userinfo.inum
result['attributes'].showInConfigurationEndpoint =
scope.attributes.showInConfigurationEndpoint
Expand Down

0 comments on commit 4bda413

Please sign in to comment.