added feature to remove charge if fee=no
If you have an object with fee=yes and charge=*, you want to remove charge=* in case the user changes fee to no
This commit is contained in:
parent
c83f1fc09f
commit
a8be0551af
1 changed files with 6 additions and 1 deletions
|
@ -85,12 +85,17 @@
|
|||
{
|
||||
"if": {
|
||||
"and": [
|
||||
"fee=no"
|
||||
"fee=no","charge="
|
||||
]
|
||||
},
|
||||
"then": {
|
||||
"en": "Can be used for free"
|
||||
}
|
||||
},
|
||||
{
|
||||
"if": "fee=no",
|
||||
"then": "Can be used for free",
|
||||
"hideInAnswer":true
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue