Versions Compared

Key

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

...

For example, if the value is generated before some other values it depends on are modified, the result might not reflect latest updates.

...

Using PCF - SIL Script custom field

  1. Go to an issue and this is how the value of the field is the value returned by the script.


...


Other Examples

Issue Age

Code Block
interval age = currentDate() - created;
return "This issue is " + age + " old";

...