File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/cloud/components/Automations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ const SUPPORTED_EVENT_NAMES = Object.keys(supportedEvents).map((key) => {
19
19
} )
20
20
21
21
const SUPPORTED_ACTION_OPTIONS = [
22
- { value : 'boost.doc .create' , label : 'boost.doc .create' } ,
23
- { value : 'boost.doc .update' , label : 'boost.doc .update' } ,
22
+ { value : 'boost.docs .create' , label : 'boost.docs .create' } ,
23
+ { value : 'boost.docs .update' , label : 'boost.docs .update' } ,
24
24
]
25
25
26
26
interface PipeBuilderProps {
@@ -114,14 +114,14 @@ const PipeBuilder = ({ pipe, onChange }: PipeBuilderProps) => {
114
114
</ FormRowItem >
115
115
</ FormRow >
116
116
< FormRow >
117
- { action . value === 'boost.doc .create' && (
117
+ { action . value === 'boost.docs .create' && (
118
118
< CreateDocActionConfigurator
119
119
configuration = { pipe . configuration . input }
120
120
onChange = { updateConfig }
121
121
eventType = { currentEvent }
122
122
/>
123
123
) }
124
- { action . value === 'boost.doc .update' && (
124
+ { action . value === 'boost.docs .update' && (
125
125
< UpdateDocActionConfigurator
126
126
configuration = { pipe . configuration . input }
127
127
onChange = { updateConfig }
You can’t perform that action at this time.
0 commit comments