You'll notice
Fixed a bug where artifact text extraction always checked the same wrong item
**What
When building the list of text content for an artifact's initial bundle, the code that extracts text fields from a list of items had a bug: it referenced the outer loop variable instead of the current item being processed, so it effectively checked the same item repeatedly rather than each item in turn. This has been fixed to correctly reference each item.
**Why
This bug could have caused artifact text content to be extracted incorrectly or incompletely; the fix ensures each item in the list is actually checked for its own text content.