fix(docs): fix all remaining webhook app links [EE-6861] (#11392)

pull/11417/head
Matt Hook 8 months ago committed by GitHub
parent c8fb3adda3
commit 889c36f64a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,7 +20,7 @@ const initialValues = {
export function KubeConfigTeaserForm() {
const kubeConfigImportDocUrl = useDocsUrl(
'admin/environments/add/kubernetes/import'
'/admin/environments/add/kubernetes/import'
);
return (

@ -11,7 +11,6 @@ import { TimeWindowDisplay } from '@/react/portainer/gitops/TimeWindowDisplay';
import { FormSection } from '@@/form-components/FormSection';
import { validateForm } from '@@/form-components/validate-form';
import { SwitchField } from '@@/form-components/SwitchField';
import { useDocsUrl } from '@@/PageHeader/ContextHelp/ContextHelp';
import { GitCredential } from '../account/git-credentials/types';
@ -53,7 +52,6 @@ export function GitForm({
createdFromCustomTemplateId,
}: Props) {
const [value, setValue] = useState(initialValue); // TODO: remove this state when form is not inside angularjs
const webhooksDocsUrl = useDocsUrl(webhooksDocs);
return (
<FormSection title="Git repository">
@ -113,7 +111,7 @@ export function GitForm({
onChange={(value) => handleChange({ AutoUpdate: value })}
isForcePullVisible={isForcePullVisible}
errors={errors.AutoUpdate as FormikErrors<GitFormModel['AutoUpdate']>}
webhooksDocs={webhooksDocsUrl}
webhooksDocs={webhooksDocs}
/>
)}

Loading…
Cancel
Save