diff --git a/web/src/app/escalation-policies/PolicyStepForm.js b/web/src/app/escalation-policies/PolicyStepForm.js index 07e642f6a5..b6c2bee5b7 100644 --- a/web/src/app/escalation-policies/PolicyStepForm.js +++ b/web/src/app/escalation-policies/PolicyStepForm.js @@ -254,7 +254,7 @@ function PolicyStepForm(props) { mapValue={getTargetsByType('chanWebhook')} mapOnChangeValue={setTargetType('chanWebhook')} hint={ - + Webhook Documentation } diff --git a/web/src/app/users/UserContactMethodForm.tsx b/web/src/app/users/UserContactMethodForm.tsx index f08cae6c33..29523a2adc 100644 --- a/web/src/app/users/UserContactMethodForm.tsx +++ b/web/src/app/users/UserContactMethodForm.tsx @@ -11,6 +11,7 @@ import { import { useConfigValue } from '../util/RequireConfig' import TelTextField from '../util/TelTextField' import { FieldError } from '../util/errutil' +import AppLink from '../util/AppLink' type Value = { name: string @@ -73,6 +74,11 @@ function renderURLField(edit: boolean): JSX.Element { type='url' component={TextField} disabled={edit} + hint={ + + Webhook Documentation + + } /> ) }