Hello,
Looks like there is a bug in rest api when we send a "html" format link in a text field to update an artifact. In the column of report, the html is displayed in plain text (despite the field is a text field, the one that has format html/commonmark possibility, not a string field)
In the artifact itself the value is well displayed as html link. If we update the field by Webgui (by changing the style to html). The field is well displayed.
Looks like the parameter format "html" is not taken into account in api rest update. (if we choose common mark, its also displayed as plain text instead of link in the report)
This bug has a big impact on report part display.
In attachment some explanation with screen capture.
Below example of the value sent by api rest (update put to an artifact):
{
"values": [
{
"field_id": 40038,
"value": "
<a href="xxxURL_LINKxxx/?aid=27583">#CID27583
\n",
"format": "html"
}
]
}