Browse Source

Fixes missing plus settings checks

main
Eric Amodio 2 years ago
parent
commit
07fd314b6d
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      package.json

+ 4
- 4
package.json View File

@ -8360,7 +8360,7 @@
"scm/sourceControl": [ "scm/sourceControl": [
{ {
"command": "gitlens.showGraphPage", "command": "gitlens.showGraphPage",
"when": "gitlens:enabled && config.gitlens.menus.scm.graph && scmProvider == git",
"when": "gitlens:enabled && config.gitlens.menus.scm.graph && config.gitlens.plusFeatures.enabled && scmProvider == git",
"group": "6_gitlens@1" "group": "6_gitlens@1"
} }
], ],
@ -8377,7 +8377,7 @@
}, },
{ {
"command": "gitlens.showGraphPage", "command": "gitlens.showGraphPage",
"when": "gitlens:enabled && config.gitlens.menus.scmRepository.graph && scmProvider == git",
"when": "gitlens:enabled && config.gitlens.menus.scmRepository.graph && config.gitlens.plusFeatures.enabled && scmProvider == git",
"group": "2_z_gitlens@2" "group": "2_z_gitlens@2"
} }
], ],
@ -8623,7 +8623,7 @@
}, },
{ {
"command": "gitlens.showGraphPage", "command": "gitlens.showGraphPage",
"when": "view =~ /^gitlens\\.views\\.commits/",
"when": "view =~ /^gitlens\\.views\\.commits/ && config.gitlens.plusFeatures.enabled",
"group": "8_gitlens_toggles@0" "group": "8_gitlens_toggles@0"
}, },
{ {
@ -10019,7 +10019,7 @@
}, },
{ {
"command": "gitlens.showGraphPage", "command": "gitlens.showGraphPage",
"when": "viewItem =~ /gitlens:repo-folder\\b/",
"when": "viewItem =~ /gitlens:repo-folder\\b/ && config.gitlens.plusFeatures.enabled",
"group": "3_gitlens_explore@1" "group": "3_gitlens_explore@1"
}, },
{ {

Loading…
Cancel
Save