console icon indicating copy to clipboard operation
console copied to clipboard

OCPBUGS-65831: Fix catalog service swapping description and markdownDescription fields

Open TheRealJon opened this issue 1 month ago • 9 comments

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

TheRealJon avatar Nov 20 '25 16:11 TheRealJon