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:
Schouppe Joost 2021-03-17 14:46:00 +01:00
parent c83f1fc09f
commit a8be0551af

View file

@ -85,12 +85,17 @@
{ {
"if": { "if": {
"and": [ "and": [
"fee=no" "fee=no","charge="
] ]
}, },
"then": { "then": {
"en": "Can be used for free" "en": "Can be used for free"
} }
},
{
"if": "fee=no",
"then": "Can be used for free",
"hideInAnswer":true
} }
] ]
}, },