Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Jun 20, 2024
1 parent 7dfbfb5 commit 2b2cb8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export function HogFunctionInputRenderer({ value, onChange, schema, disabled }:
return <LemonCheckbox checked={value} onChange={(checked) => onChange?.(checked)} disabled={disabled} />
case 'integration':
return <HogFunctionInputIntegration schema={schema} value={value} onChange={onChange} />
case 'integration-field':
case 'integration_field':
return <HogFunctionInputIntegrationField schema={schema} value={value} onChange={onChange} />
default:
return (
Expand Down
2 changes: 1 addition & 1 deletion posthog/cdp/templates/slack/template_slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
{
"key": "channel",
"type": "integration-field",
"type": "integration_field",
"integration_key": "slack_workspace",
"integration_field": "slack_channel",
"label": "Channel to post to",
Expand Down

0 comments on commit 2b2cb8b

Please sign in to comment.