Skip to content

Commit aff15fd

Browse files
author
Tim Etchells
committed
add an extra space to disconnected icon :)
1 parent bf8db02 commit aff15fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/src/microclimate/connection/Connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export default class Connection implements ITreeItemAdaptable, vscode.QuickPickI
150150
public async getChildren(): Promise<ITreeItemAdaptable[]> {
151151
if (!this.connected) {
152152
// The context ID can be any truthy string.
153-
const disconnectedLabel = "❌ " + Translator.t(StringNamespaces.TREEVIEW, "disconnectedConnectionLabel");
153+
const disconnectedLabel = "❌ " + Translator.t(StringNamespaces.TREEVIEW, "disconnectedConnectionLabel");
154154
const disconnectedContextID = "disconnectedContextID"; // non-nls;
155155
const disconnectedTI = new SimpleTreeItem(disconnectedLabel, undefined, undefined, disconnectedContextID);
156156
return [ disconnectedTI ];

0 commit comments

Comments
 (0)