Debt - Prevent icon translations (#154094)

Prevent icon translations
This commit is contained in:
Ladislau Szomoru
2022-07-04 16:37:52 +02:00
committed by GitHub
parent 3fc0a6b2d1
commit 32406a7157
2 changed files with 4 additions and 4 deletions

View File

@@ -70,7 +70,7 @@ class RemoteSourceProviderQuickPick {
}));
}
} catch (err) {
this.quickpick!.items = [{ label: localize('error', "$(error) Error: {0}", err.message), alwaysShow: true }];
this.quickpick!.items = [{ label: localize('error', "{0} Error: {1}", '$(error)', err.message), alwaysShow: true }];
console.error(err);
} finally {
this.quickpick!.busy = false;