Skip to content

Commit

Permalink
fix(admin-ui): fix default arc in properties #851
Browse files Browse the repository at this point in the history
  • Loading branch information
mjatin-dev committed Mar 14, 2023
1 parent 092b464 commit 9ef87ad
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,11 @@ function DefaultAcrInput({
if (isArray) {
put[VALUE] = correctValue
} else {
put[VALUE] = document.getElementById(name).value
put[VALUE] = data
}
put['op'] = 'replace'
handler(put)
setShow(!show)
setData(document.getElementById(name).value)
}
const onCancel = () => {
setCorrectValue([])
Expand Down

0 comments on commit 9ef87ad

Please sign in to comment.