We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4eb80f commit d7204caCopy full SHA for d7204ca
1 file changed
src/client/debugger/extension/configuration/providers/remoteAttach.ts
@@ -47,7 +47,7 @@ export class RemoteAttachDebugConfigurationProvider implements IDebugConfigurati
47
prompt: DebugConfigStrings.attach.enterRemoteHost.prompt,
48
validate: (value) =>
49
Promise.resolve(
50
- value && value.trim.length > 0 ? undefined : DebugConfigStrings.attach.enterRemoteHost.invalid,
+ value && value.trim().length > 0 ? undefined : DebugConfigStrings.attach.enterRemoteHost.invalid,
51
),
52
});
53
if (!connect.host) {
0 commit comments