We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
given a workflow definition like
id: form-reply-conditional-message activities: - send-message: id: testForm on: message-received: content: /test content: | <messageML> <p><b>Test</b></p> <form id="testForm"> Hi, what can I do for you? <button name="create" type="action">Create</button> <button name="menu" type="action">Menu</button> </form> </messageML> - send-message: id: resCreate if: ${testForm.action=='create'} on: form-replied: form-id: testForm exclusive: true content: Create - send-message: id: resMenu else: {} on: form-replied: form-id: testForm exclusive: true content: Menu - send-message: id: finish on: message-received: content: /continue content: DONE
the condition if: ${testForm.action=='create'} is not taken into account
if: ${testForm.action=='create'}
the workflow is running with the condition taken into account
...version and build of the project, OS and runtime versions, virtualised environment (if any), etc. ...
...add any other context about the problem here. If applicable, add screenshots to help explain...
The text was updated successfully, but these errors were encountered:
Fixed and will released in WDK 1.3.0
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug Report
given a workflow definition like
the condition
if: ${testForm.action=='create'}
is not taken into accountExpected Result:
the workflow is running with the condition taken into account
Environment:
...version and build of the project, OS and runtime versions, virtualised environment (if any), etc. ...
Additional Context:
...add any other context about the problem here. If applicable, add screenshots to help explain...
The text was updated successfully, but these errors were encountered: