Skip to content

Commit b4f028f

Browse files
authored
Merge pull request #391 from FloSch62/fix_cid
fix cid refresh
2 parents 6e5cde0 + 04ce66b commit b4f028f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"icon": "resources/containerlab.png",
66
"description": "Manages containerlab topologies in VS Code",
77
"author": "SRL Labs",
8-
"version": "0.19.0",
8+
"version": "0.19.1",
99
"homepage": "https://containerlab.dev/manual/vsc-extension/",
1010
"engines": {
1111
"vscode": "^1.99.0"

src/treeView/runningLabsProvider.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,7 @@ export class RunningLabTreeDataProvider implements vscode.TreeDataProvider<c.Cla
481481
['description', source.description, true],
482482
['tooltip', source.tooltip, true],
483483
['contextValue', source.contextValue],
484+
['cID', (source as any).cID],
484485
['state', source.state],
485486
['status', source.status],
486487
['kind', (source as any).kind],
@@ -553,6 +554,7 @@ export class RunningLabTreeDataProvider implements vscode.TreeDataProvider<c.Cla
553554
['description', source.description, true],
554555
['tooltip', source.tooltip, true],
555556
['contextValue', source.contextValue],
557+
['cID', (source as any).cID],
556558
['state', source.state],
557559
['type', (source as any).type],
558560
['alias', (source as any).alias],

0 commit comments

Comments
 (0)