We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 306a496 commit aadc0e4Copy full SHA for aadc0e4
1 file changed
src/view/treeNodes/categoryNode.ts
@@ -182,10 +182,7 @@ export class CategoryTreeNode extends TreeNode implements vscode.TreeItem {
182
}
183
184
if (this._categoryQuery) {
185
- this.contextValue = 'query';
186
- if (this.isCopilot) {
187
- this.contextValue = 'copilot-query';
188
- }
+ this.contextValue = this.isCopilot ? 'copilot-query' : 'query';
189
190
191
if (this.isCopilot) {
0 commit comments