mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
fix the sqlservices sample extension (#22893)
This commit is contained in:
@@ -33,7 +33,8 @@ export class ObjectExplorerProvider implements azdata.ObjectExplorerProvider {
|
||||
nodePath: RootNode,
|
||||
nodeType: 'server',
|
||||
label: 'abc',
|
||||
isLeaf: false
|
||||
isLeaf: false,
|
||||
parentNodePath: ''
|
||||
}
|
||||
});
|
||||
}, 500);
|
||||
@@ -99,13 +100,15 @@ export class ObjectExplorerProvider implements azdata.ObjectExplorerProvider {
|
||||
dark: this.context.asAbsolutePath('images/group_inverse.svg')
|
||||
},
|
||||
label: `obj 1 - ${timestamp}`,
|
||||
isLeaf: false
|
||||
isLeaf: false,
|
||||
parentNodePath: nodeInfo.nodePath
|
||||
}, {
|
||||
nodePath: nodeInfo.nodePath + '/2',
|
||||
nodeType: '',
|
||||
icon: azdata.SqlThemeIcon.Column,
|
||||
label: `obj 2 - ${timestamp}`,
|
||||
isLeaf: false
|
||||
isLeaf: false,
|
||||
parentNodePath: nodeInfo.nodePath
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user