Skip to content

Commit f9da919

Browse files
committed
chore: misc improvements
1 parent 77ab279 commit f9da919

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"engines": {
99
"vscode": "^1.54.0"
1010
},
11+
"extensionKind": [
12+
"workspace"
13+
],
1114
"categories": [
1215
"Other"
1316
],

src/workspaces.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,14 @@ export class CoderWorkspace extends vscode.TreeItem {
127127
) {
128128
super(workspace.name, collapsibleState)
129129

130-
this.tooltip = `${this.label}`
131130
const image = images.find((a) => a.id === workspace.image_id)!
132131
this.description = `${image.repository}:${workspace.image_tag}, ${workspace.cpu_cores} vCPU, ${workspace.memory_gb}GB Memory`
133132

134133
this.iconPath = workspaceIcon(workspace)
134+
this.tooltip = `${this.label}
135+
${image.repository}:${workspace.image_tag}
136+
${workspace.cpu_cores} vCPU
137+
${workspace.memory_gb} GB Memory`
135138
}
136139
}
137140

0 commit comments

Comments
 (0)