Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Commit c8a767d

Browse files
Merge pull request #489 from govau/feature-select-all
Fix bug where select was not adding components to the npm copy list
2 parents c564486 + 6931c07 commit c8a767d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/js/footer/050-furnace-code.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ function ClearNPM() {
7171
*/
7272
AddEvent( furnaceSelectAll, "click", function() {
7373
for ( i = 0; i < furnaceComponents.length; i++ ) {
74-
furnaceComponents[ i ].checked = true;
74+
furnaceComponents[ i ].checked = true;
75+
ToggleNPM( furnaceComponents[ i ] );
7576
}
7677
})

0 commit comments

Comments
 (0)