We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c6cea commit ee33735Copy full SHA for ee33735
src/openshift/url.ts
@@ -22,8 +22,9 @@ export class Url extends OpenShiftItem{
22
const urlName = await Url.getName('URL name', await Url.odo.getRoutes(component));
23
if (!urlName) return null;
24
const ports: Port[] = await Url.odo.getComponentPorts(component);
25
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
26
const portItems: QuickPickItem[] = ports.map<QuickPickItem>((item: any) => {
- item.label = `${item.Number}/${item.Protocol}`;
27
+ item.label = `${item.number}/${item.protocol}`;
28
return item;
29
});
30
let port: Port | QuickPickItem;
0 commit comments