Skip to content

Commit

Permalink
fix(dataField): 'effect.raw' has been unavailable (#1542)
Browse files Browse the repository at this point in the history
  • Loading branch information
konpeki622 committed Aug 27, 2021
1 parent 89b0710 commit f8c5c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-backend-vue3/src/components/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function processSetupState (instance) {

result = {
...objectType ? { objectType } : {},
...raw.effect ? { raw: raw.effect.raw.toString() } : {},
...raw.effect ? { raw: raw.effect.fn.toString() } : {},
editable: isState && !info.readonly,
type: isOther ? 'setup (other)' : 'setup'
}
Expand Down

0 comments on commit f8c5c7f

Please sign in to comment.