Skip to content

Commit

Permalink
fix(dataField): 'effect.raw' has been unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
konpeki622 committed Aug 18, 2021
1 parent e03ea3c commit b572f7c
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 b572f7c

Please sign in to comment.