Skip to content

Commit 6f351d5

Browse files
tsmaederfbricon
authored andcommitted
Addresses more PR comments
Signed-off-by: Thomas Mäder <[email protected]>
1 parent 2fc70a7 commit 6f351d5

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
66
"dbaeumer.vscode-eslint",
77
"EditorConfig.EditorConfig",
8-
"amodio.tsl-problem-matcher",
9-
"yaozheng.vscode-pde"
8+
"amodio.tsl-problem-matcher"
109
]
1110
}

src/dashboard/dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export namespace Dashboard {
163163

164164
context.subscriptions.push(vscode.commands.registerCommand(Commands.OPEN_JAVA_DASHBOARD, async () => {
165165
if (!dashboardPanel) {
166-
webviewPanel = vscode.window.createWebviewPanel('java.dashboard', 'Dashboard', vscode.ViewColumn.Active, {
166+
webviewPanel = vscode.window.createWebviewPanel('java.dashboard', 'Java Dashboard', vscode.ViewColumn.Active, {
167167
enableScripts: true,
168168
enableCommandUris: true,
169169
retainContextWhenHidden: true,

src/webview/dashboard/dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class Dashboard extends React.Component<AppProps, State> {
7575
<a href={`command:java.dashboard.dumpState`} className="toolbarItem" tabIndex={-1}><i className="codicon codicon-json" title="Dump State"></i></a>
7676
</div>
7777
<h3>Workspace</h3>
78-
<div>Path: {this.state.workspacePath || 'undefined'}</div>
78+
<div>Language Server Workspace: {this.state.workspacePath || 'undefined'}</div>
7979
<div><a href={`command:java.dashboard.revealFileInOS?${encodeURIComponent(JSON.stringify(args))}`}>Reveal</a></div>
8080
<h3>Detected Java Installations</h3>
8181
<Jvms jvms={this.state.jvms}></Jvms>

0 commit comments

Comments
 (0)