We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb68847 commit 5580f44Copy full SHA for 5580f44
src/openshift/component.ts
@@ -682,6 +682,8 @@ export class Component extends OpenShiftItem {
682
}));
683
const port = await window.showQuickPick(ports, {placeHolder: 'Select a URL to open in default browser'});
684
685
+ if (!port) return null;
686
+
687
config.contextPath = component.contextPath;
688
if (config.type === 'python') {
689
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
0 commit comments