We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c175b3 commit 0913877Copy full SHA for 0913877
js/activity.js
@@ -7291,7 +7291,7 @@ class Activity {
7291
7292
this.unhighlightSelectedBlocks = (unhighlight, selectionModeOn) => {
7293
for (let i = 0; i < this.selectedBlocks.length; i++) {
7294
- for (const blk in this.blocks.blockList) {
+ for (let blk = 0; blk < this.blocks.blockList.length; blk++) {
7295
if (this.isEqual(this.blocks.blockList[blk], this.selectedBlocks[i])) {
7296
if (unhighlight) {
7297
this.blocks.unhighlightSelectedBlocks(blk, true);
0 commit comments