Skip to content

Commit 6bbb3ca

Browse files
committed
1 parent ad62f09 commit 6bbb3ca

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/vs/workbench/services/extensions/browser/extensionUrlHandler.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,12 +391,11 @@ class ManageAuthorizedExtensionURIsAction extends Action2 {
391391
async run(accessor: ServicesAccessor): Promise<void> {
392392
const storageService = accessor.get(IStorageService);
393393
const quickInputService = accessor.get(IQuickInputService);
394-
395394
const storage = new ConfirmedExtensionIdStorage(storageService);
396-
397395
const items = storage.extensions.map(label => ({ label, picked: true } as IQuickPickItem));
398396

399397
if (items.length === 0) {
398+
await quickInputService.pick([{ label: localize('no', 'There are currently no authorized extension URIs.') }]);
400399
return;
401400
}
402401

0 commit comments

Comments
 (0)