Skip to content

Commit

Permalink
Remove usages of createObservableArray.getArray, see phetsims/axon#279
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 12, 2020
1 parent b738313 commit ec44610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/sound-generators/SoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class SoundGenerator {
// listener that updates the state of fullyEnabledProperty
const updateFullyEnabledState = () => {
this.fullyEnabledProperty.value = _.every(
this.enableControlProperties.getArray(),
this.enableControlProperties,
enableControlProperty => enableControlProperty.value
);
};
Expand Down

0 comments on commit ec44610

Please sign in to comment.