Skip to content

Commit 4617bc7

Browse files
CopilotTyriar
andcommitted
Fix syntax error in quickPickPin.ts getItemIdentifier function
Co-authored-by: Tyriar <[email protected]>
1 parent 3c97875 commit 4617bc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/quickinput/browser/quickPickPin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function _formatPinnedItems(storageKey: string, quickPick: IQuickPick<IQuickPick
7777
}
7878

7979
function getItemIdentifier(item: QuickPickItem): string {
80-
return item.type === 'separator' ? '' : item.id || `${item.label}${item.description}${item.detail}}`;
80+
return item.type === 'separator' ? '' : item.id || `${item.label}${item.description}${item.detail}`;
8181
}
8282

8383
function updateButtons(item: QuickPickItem, removePin: boolean): void {

0 commit comments

Comments
 (0)