Skip to content

Commit e70c1ee

Browse files
committed
resets to old behaviour of "expand if previously expanded" but keeping "expand on startup"
1 parent 94e45ce commit e70c1ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vscode-extension/src/treeviews/connectionTreeDataProvider.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ export class ConnectionItem extends TreeItem {
180180
),
181181
),
182182
};
183-
this.id = key//`${key}-${collapsibleState}`;
183+
this.id = key;
184184
break;
185185
case 'connection':
186186
this.iconPath = {
@@ -203,7 +203,7 @@ export class ConnectionItem extends TreeItem {
203203
),
204204
),
205205
};
206-
this.id = `${key}-${collapsibleState}`;
206+
this.id = key;
207207
this.command = {
208208
title: 'onClickConnect',
209209
command: CONSTANTS.COMMANDS.CONNECT_COMMAND,

0 commit comments

Comments
 (0)