fix(docs): fix all remaining webhook app links [EE-6861] (#11393)
parent
6e169662c2
commit
573f003226
|
@ -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…
Reference in New Issue