Skip to content

Commit a13cf55

Browse files
authored
Merge pull request #23 from opsmill/may-202508-fix-branch-treeview-buttons
Fix the tree view name that was changed recently for branching commands.
2 parents 7a53cf1 + f643aee commit a13cf55

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

changelog/branch.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed an issue where the branch management icons (such as new branch and delete branch) were not showing up in the Infrahub server view.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "infrahub",
33
"displayName": "Infrahub",
44
"description": "Infrahub development tools.",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"publisher": "opsmill",
77
"homepage": "https://github.com/opsmill/infrahub-vscode/blob/main/README.md",
88
"icon": "media/infrahub-logo.png",
@@ -187,22 +187,22 @@
187187
"view/item/context": [
188188
{
189189
"command": "infrahub.newBranch",
190-
"when": "view == InfrahubServerTreeView && viewItem == infrahubServer",
190+
"when": "view == infrahubServerTreeView && viewItem == infrahubServer",
191191
"group": "inline"
192192
},
193193
{
194194
"command": "infrahub.newBranch",
195-
"when": "view == InfrahubServerTreeView && viewItem == infrahubServer",
195+
"when": "view == infrahubServerTreeView && viewItem == infrahubServer",
196196
"group": "context"
197197
},
198198
{
199199
"command": "infrahub.deleteBranch",
200-
"when": "view == InfrahubServerTreeView && viewItem =~ /^infrahubBranch/",
200+
"when": "view == infrahubServerTreeView && viewItem =~ /^infrahubBranch/",
201201
"group": "inline"
202202
},
203203
{
204204
"command": "infrahub.deleteBranch",
205-
"when": "view == InfrahubServerTreeView && viewItem =~ /^infrahubBranch/",
205+
"when": "view == infrahubServerTreeView && viewItem =~ /^infrahubBranch/",
206206
"group": "context"
207207
},
208208
{

0 commit comments

Comments
 (0)