[Jira Spoke] Unable to select dynamic choice inputDescriptionThe updated dynamic choice framework needs to set the selected value on the dynamic choice and it does so with a javascript === comparision. This requires not only the values to be equal but the types must be the same. Thus, the string "1" and the integer 1 appear equal, but they are of different types. This is the reason for this defect, an integer was being compared to a string and the result was false even though they were both 1. The fix for this is to use the less restrictive == comparision which does not enforce the types being the same.Steps to Reproduce Steps:1. Install Jira spoke and do the connection setup2. Add the "Create Sprint" action to the flow3. Not able to select the "Board" input. But seen the execution of "Get Boards (Metadata)" actionInstance - https://instance.service-now.com/Please refer to the attached recording and screenshotActual Result - Not able to select the dynamic choice inputsExpected Result - Should be able to select the dynamic choice inputsWorkaroundThe work around for this is to change the integer value into a string in the name attribute from the dynamic choice data provider. Instead of returning integers like this: outputs.result = { data: [ { label: "Choice Option 1", name: 1 } ] } You have to return a string: outputs.result = { data: [ { label: "Choice Option 1", name: "1" } ] } Related Problem: PRB1839804