Skip to content

Commit

Permalink
fix: error in creating scope #573
Browse files Browse the repository at this point in the history
  • Loading branch information
duttarnab committed Nov 2, 2022
1 parent b535a46 commit 9c09bef
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 9c09bef

Please sign in to comment.