fix(kube): fix edit application webhook link [EE-6861] (#11390)

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

@ -43,7 +43,7 @@ export const gitFormModule = angular
) )
.component( .component(
'reactGitFormAutoUpdateFieldset', 'reactGitFormAutoUpdateFieldset',
r2a(AutoUpdateFieldset, [ r2a(withUIRouter(withReactQuery(AutoUpdateFieldset)), [
'value', 'value',
'onChange', 'onChange',
'environmentType', 'environmentType',

@ -36,7 +36,7 @@ import { Slider } from '@@/form-components/Slider';
import { TagButton } from '@@/TagButton'; import { TagButton } from '@@/TagButton';
import { BETeaserButton } from '@@/BETeaserButton'; import { BETeaserButton } from '@@/BETeaserButton';
import { CodeEditor } from '@@/CodeEditor'; import { CodeEditor } from '@@/CodeEditor';
import { HelpLink } from '@@/PageHeader/HelpLink'; import { HelpLink } from '@@/HelpLink';
import { fileUploadField } from './file-upload-field'; import { fileUploadField } from './file-upload-field';
import { switchField } from './switch-field'; import { switchField } from './switch-field';

@ -1,4 +1,4 @@
import { useDocsUrl } from '../ContextHelp/ContextHelp'; import { useDocsUrl } from '../PageHeader/ContextHelp/ContextHelp';
type HelpLinkProps = { type HelpLinkProps = {
docLink?: string; docLink?: string;

@ -1,5 +1,6 @@
import { truncateLeftRight } from '@/portainer/filters/filters'; import { truncateLeftRight } from '@/portainer/filters/filters';
import { HelpLink } from '@@/HelpLink';
import { CopyButton } from '@@/buttons'; import { CopyButton } from '@@/buttons';
import { FormControl } from '@@/form-components/FormControl'; import { FormControl } from '@@/form-components/FormControl';
@ -21,9 +22,9 @@ export function WebhookSettings({
!!docsLink && ( !!docsLink && (
<> <>
See{' '} See{' '}
<a href={docsLink} target="_blank" rel="noreferrer"> <HelpLink docLink={docsLink}>
Portainer documentation on webhook usage Portainer documentation on webhook usage
</a> </HelpLink>
. .
</> </>
) )

Loading…
Cancel
Save