mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-27 11:02:16 +01:00
feat: disallow negative condition interval (#10783)
This commit is contained in:
parent
ea9f92bd88
commit
9db7bcffd5
@ -8,7 +8,8 @@ export const transitionConditionSchema = {
|
||||
description: 'A transition condition for milestone progression',
|
||||
properties: {
|
||||
intervalMinutes: {
|
||||
type: 'number',
|
||||
type: 'integer',
|
||||
minimum: 1,
|
||||
description: 'The interval in minutes before transitioning',
|
||||
example: 30,
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user