Open andreasciamanna opened 3 years ago
Hi @andreasciamanna, I just noticed that the text property was added only recently which was not included in v1.3.2, I just published a new version 1.4.0 - please try updating it and see if it fixes the issue.
When fetching an issue with a
TextIssueCustomField
custom field, the text or markdown value of that field is not returned.I only get that:
When fetching the same issue via GET request, I get the full value:
In
src/entities/issueCustomField.ts
, it seems that, at least the "text" property must be returned, which is strange:I just call
youtrack.issues.byId(someId).then((issue) => { ...
.For now, I have to resort to using a plain GET request because I can't figure out what I'm doing wrong.