Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.3.9, 5.0.0
-
None
-
R5.2.0 Sprint 1
-
-
Description
When we have a mapping that returns a list of values (FixVersionsReleaseDate, list of dates) and we want to apply a formatter (dateformat), the formatter will fail and return the list unformatted.
The formatter should be applied to each value of the list.
Ex.
4.3.9 | 5.0.0 |
exporting an issue with 1 fix version:
${FixVersionsReleaseDate}:
20-01-2017
${dateformat("yyyy-MM-dd"):FixVersionsReleaseDate}:
2017-02-20
exporting an issue with 2 fix versions:
${FixVersionsReleaseDate}:
22-11-2016
20-01-2017
${dateformat("yyyy-MM-dd"):FixVersionsReleaseDate}:
|
exporting an issue with 1 fix version:
${FixVersionsReleaseDate}:
2017-02-20T00:00:00Z[Europe/Lisbon]
${dateformat("yyyy-MM-dd"):FixVersionsReleaseDate}:
2017-02-20
exporting an issue with 2 fix versions:
${FixVersionsReleaseDate}:
2016-11-22T00:00:00Z[Europe/Lisbon]
2017-02-20T00:00:00Z[Europe/Lisbon]
${dateformat("yyyy-MM-dd"):FixVersionsReleaseDate}:
2016-11-22T00:00:00Z[Europe/Lisbon]
2017-02-20T00:00:00Z[Europe/Lisbon]
|