This commit is contained in:
CeciliaAvila 2024-04-17 15:26:37 -03:00
Родитель 375e2292db
Коммит 2e462328af
2 изменённых файлов: 11 добавлений и 1 удалений

Просмотреть файл

@ -6260,6 +6260,15 @@
} }
}, },
"properties": { "properties": {
"executionLimit": {
"$ref": "#/definitions/numberExpression",
"title": "Execution limit",
"description": "Number of executions allowed for this trigger. Used to break loops in case of errors inside the trigger.",
"examples": [
3,
"=f(x)"
]
},
"condition": { "condition": {
"$ref": "#/definitions/condition", "$ref": "#/definitions/condition",
"title": "Condition", "title": "Condition",

Просмотреть файл

@ -851,7 +851,8 @@
"label": "Error occurred", "label": "Error occurred",
"order": [ "order": [
"condition", "condition",
"*" "*",
"executionLimit"
], ],
"subtitle": "Error event" "subtitle": "Error event"
} }