fix(contexthelp): remove extra slash from contexthelp docs link [EE-6780] (#11312)

pull/11324/head
Matt Hook 9 months ago committed by GitHub
parent 6b3ddf11d4
commit 6bbf62fe64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -50,7 +50,7 @@ function useDocsUrl(): string {
const parts = ServerVersion.split('.');
if (parts.length >= 2) {
const version = parts.slice(0, 2).join('.');
url += `v/${version}/`;
url += `v/${version}`;
}
}

Loading…
Cancel
Save