@@ -152,7 +152,7 @@ export default () => {
152
152
/>
153
153
154
154
{ extensionDescriptor . platform !== PLATFORMS . EDGE && (
155
- < >
155
+ < View paddingY = "size-100" >
156
156
< Heading level = { 3 } > Events</ Heading >
157
157
< RuleComponentsList
158
158
addLabel = "Add new event"
@@ -164,31 +164,37 @@ export default () => {
164
164
items = { rule . events || [ ] }
165
165
type = "events"
166
166
/>
167
- </ >
167
+ </ View >
168
168
) }
169
169
170
- < Heading level = { 3 } > Conditions</ Heading >
171
- < RuleComponentsList
172
- addLabel = "Add new condition"
173
- handleDeleteClick = { handleDeleteClick ( {
174
- rule,
175
- setRule,
176
- setCurrentRule : dispatch . currentRule . setCurrentRule
177
- } ) }
178
- items = { rule . conditions || [ ] }
179
- type = "conditions"
180
- />
181
- < Heading level = { 3 } > Actions</ Heading >
182
- < RuleComponentsList
183
- addLabel = "Add new action"
184
- handleDeleteClick = { handleDeleteClick ( {
185
- rule,
186
- setRule,
187
- setCurrentRule : dispatch . currentRule . setCurrentRule
188
- } ) }
189
- items = { rule . actions || [ ] }
190
- type = "actions"
191
- />
170
+ < View paddingY = "size-100" >
171
+ < Heading level = { 3 } > Conditions</ Heading >
172
+ < RuleComponentsList
173
+ addLabel = "Add new condition"
174
+ handleDeleteClick = { handleDeleteClick ( {
175
+ rule,
176
+ setRule,
177
+ setCurrentRule : dispatch . currentRule . setCurrentRule
178
+ } ) }
179
+ items = { rule . conditions || [ ] }
180
+ type = "conditions"
181
+ />
182
+ </ View >
183
+
184
+ < View paddingY = "size-100" >
185
+ < Heading level = { 3 } > Actions</ Heading >
186
+ < RuleComponentsList
187
+ addLabel = "Add new action"
188
+ handleDeleteClick = { handleDeleteClick ( {
189
+ rule,
190
+ setRule,
191
+ setCurrentRule : dispatch . currentRule . setCurrentRule
192
+ } ) }
193
+ items = { rule . actions || [ ] }
194
+ type = "actions"
195
+ />
196
+ </ View >
197
+
192
198
< Divider marginTop = "size-300" />
193
199
< ButtonGroup marginTop = "size-150" marginBottom = "size-150" >
194
200
< Button
0 commit comments