Skip to content

Commit 6a7610b

Browse files
jrichter1dgolovin
authored andcommitted
Ignore not selected items when using clear all
1 parent edc959c commit 6a7610b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

browser/pages/selection/controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class SelectionController {
5858
if (node.isInstallable && node.isNotDetected()) {
5959
node.selectedOption = 'install';
6060
}
61-
} else if(type==='none') {
61+
} else if(type ==='none' && node.selectedOption === 'install') {
6262
node.selectedOption = 'detected';
6363
deselectedComponents.push(node);
6464
}

0 commit comments

Comments
 (0)