mirror of https://github.com/portainer/portainer
fix(kube): fix edit application webhook link [EE-6861] (#11390)
parent
f15be1d92a
commit
c8fb3adda3
|
@ -43,7 +43,7 @@ export const gitFormModule = angular
|
|||
)
|
||||
.component(
|
||||
'reactGitFormAutoUpdateFieldset',
|
||||
r2a(AutoUpdateFieldset, [
|
||||
r2a(withUIRouter(withReactQuery(AutoUpdateFieldset)), [
|
||||
'value',
|
||||
'onChange',
|
||||
'environmentType',
|
||||
|
|
|
@ -36,7 +36,7 @@ import { Slider } from '@@/form-components/Slider';
|
|||
import { TagButton } from '@@/TagButton';
|
||||
import { BETeaserButton } from '@@/BETeaserButton';
|
||||
import { CodeEditor } from '@@/CodeEditor';
|
||||
import { HelpLink } from '@@/PageHeader/HelpLink';
|
||||
import { HelpLink } from '@@/HelpLink';
|
||||
|
||||
import { fileUploadField } from './file-upload-field';
|
||||
import { switchField } from './switch-field';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { useDocsUrl } from '../ContextHelp/ContextHelp';
|
||||
import { useDocsUrl } from '../PageHeader/ContextHelp/ContextHelp';
|
||||
|
||||
type HelpLinkProps = {
|
||||
docLink?: string;
|
|
@ -1,5 +1,6 @@
|
|||
import { truncateLeftRight } from '@/portainer/filters/filters';
|
||||
|
||||
import { HelpLink } from '@@/HelpLink';
|
||||
import { CopyButton } from '@@/buttons';
|
||||
import { FormControl } from '@@/form-components/FormControl';
|
||||
|
||||
|
@ -21,9 +22,9 @@ export function WebhookSettings({
|
|||
!!docsLink && (
|
||||
<>
|
||||
See{' '}
|
||||
<a href={docsLink} target="_blank" rel="noreferrer">
|
||||
<HelpLink docLink={docsLink}>
|
||||
Portainer documentation on webhook usage
|
||||
</a>
|
||||
</HelpLink>
|
||||
.
|
||||
</>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue