node-automator 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -0
- package/package.json +1 -1
- package/utils/selection_tool.js +1 -1
package/index.js
CHANGED
package/package.json
CHANGED
package/utils/selection_tool.js
CHANGED
|
@@ -583,7 +583,7 @@ async function multiSelect(content, data) {
|
|
|
583
583
|
onKeyPress(undefined, { name: "return" });
|
|
584
584
|
}
|
|
585
585
|
});
|
|
586
|
-
success(`已选择:${getPrint(selectedOptions, true)}`);
|
|
586
|
+
!data.quiet && success(`已选择:${getPrint(selectedOptions, true)}`);
|
|
587
587
|
return selectedOptions;
|
|
588
588
|
}
|
|
589
589
|
|