console
console copied to clipboard
OCPBUGS-65831: Fix catalog service swapping description and markdownDescription fields
The catalog service was incorrectly parsing FBC from catalogd:
- Short plain-text descriptions were stored in markdownDescription
- Long markdown-formatted descriptions were stored in description
This fix corrects the field mapping:
- csvMetadata.Annotations["description"] → item.Description (short, plain-text)
- csvMetadata.Description → item.MarkdownDescription (long, markdown)
Also removed fallback logic for markdownDescription to keep it empty when not available, and removed unused pkg parameter.
🤖 Generated with Claude Code