Versions Compared

Key

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

...

The output of this code is a String which you could, for example, use in a Groovy expression, to calculate and display the concatenation of two text fields Customer Name and Machine details in a Calculated Text field.

Code Block
languagejs
linenumberstrue
textutils.noNull(issue.get("Customer Name")) + textutils.noNull(issue.get("Machine details"))

...