Skip to content

Commit

Permalink
Fixed: Cannot open properties on new form
Browse files Browse the repository at this point in the history
  • Loading branch information
r3-gabriel committed Jun 27, 2023
1 parent ed1160b commit 304545b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/comps/builder/builderForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ let MyBuilderForm = {
fieldShowHasQuery:(s) => s.getFieldHasQuery(s.fieldShow),
form: (s) => typeof s.formIdMap[s.id] === 'undefined' ? false : s.formIdMap[s.id],
joinsIndexMap: (s) => s.getJoinsIndexMap(s.joins),
presetCandidates: (s) => s.relation === false ? [] : s.relationIdMap[s.form.query.relationId].presets,
presetCandidates: (s) => s.relation === false ? [] : s.relationIdMap[s.relationId].presets,
relation: (s) => typeof s.relationIdMap[s.relationId] === 'undefined' ? false : s.relationIdMap[s.relationId],

// stores
Expand Down

0 comments on commit 304545b

Please sign in to comment.