vue2-client 1.17.20 → 1.17.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.17.20",
3
+ "version": "1.17.21",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -555,8 +555,8 @@ export default {
555
555
  if (!this.isDebugUser) {
556
556
  return
557
557
  }
558
- // 只有已完成的节点才能右键
559
- if (!this.isStepCompleted(step)) {
558
+ // 只有已完成的节点或当前节点才能右键
559
+ if (!this.isStepCompleted(step) || step.id === this.currentStepId) {
560
560
  return
561
561
  }
562
562