Skip to content

Commit

Permalink
fix(lib): fix recomputing of the optional state
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Metzener authored and anehx committed Jul 11, 2019
1 parent ce94cb8 commit 13f4fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/lib/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export default Base.extend({
);

hiddenDependents.forEach(f => f.hiddenTask.perform());
optionalDependents.forEach(f => f.hiddenTask.perform());
optionalDependents.forEach(f => f.optionalTask.perform());
};

// if the field is a form question, the fields of the linked fieldset must
Expand Down

0 comments on commit 13f4fee

Please sign in to comment.