BUG: condition $in are not working

I have a selectedTeams array in the steps as such

   {

          "type": "question",

          "entity": "selectedTeams",

          "entity-type": "teams",

          "capture-multiple-values": true,

          "display": {

            "type": "multi-select",

            "title": "Please select team(s) to involve in the process",

            "button-text": "Submit"

          }

   },

  {

          "conditions": [

            "{{$in 'team1' selectedTeams}}"

          ],

          "type": "message",

          "messages": [

            "Teams TEAM1 selected."

          ]

 }

But the condition {{$in 'team1' electedTeams}} doesn't evaluate to true
{{$in team1 electedTeams}}  is not working either.


Login or Signup to post a comment