Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
title[in progress] The activity HTML Composer incorrectly resolves variables with equal parts of names

Issue:

The HTML Composer activity incorrectly resolves variables with equal parts of names.
Example:

  1. ${using:flowster} = Demo

  2. ${using:flowsterID} = 12234

  3. ${using:flowsterName} = Testing

Result:

  1. demo

  2. demoID

  3. demoName

Status:

in Progress

Expand
title[openin Progress] The activity Terminate Workflow in a snippet wokrflow doesn't abort the main workflow

Issue:

The main workflow doesn’t abort, if it include a snippet, which extecute the activity Terminate workflow and the start snipper condition stop on error = true.

Status:

openin Progress

Solution:

Use the throw activity in the snippet instead. This will throw an unhandled exception, which can be handeled by a seperate try catch in the main workflow, if needed.

...