fix(scorecard): status icon rendering issue in cluster env#2866
Conversation
Code Review by Qodo
1. Unsound icon map typing
|
Changed Packages
|
Review Summary by QodoFix status icon rendering in cluster environment with fallback icons
WalkthroughsDescription• Add fallback to built-in Material Design icons when system icons unavailable • Implement icon priority: system icon > built-in icon > URL/ligature fallback • Add comprehensive test coverage for all icon rendering scenarios • Create changeset documenting the cluster environment fix Diagramflowchart LR
A["Icon Request"] --> B{"System Icon<br/>Registered?"}
B -->|Yes| C["Use System Icon"]
B -->|No| D{"Built-in Icon<br/>Available?"}
D -->|Yes| E["Use Built-in Icon"]
D -->|No| F["Fallback to URL<br/>or Ligature"]
C --> G["Render Icon"]
E --> G
F --> G
File Changes1. workspaces/scorecard/.changeset/many-frogs-count.md
|
dzemanov
left a comment
There was a problem hiding this comment.
Thank you for this quick fix! I have only 1 small comment.
34fe78c to
9fb3f2a
Compare
|
…veloper#2866) * fix(scorecard): status icon rendering issue in cluster env * reusing existing icons



Hey, I just made a Pull Request!
Fix: https://redhat.atlassian.net/browse/RHDHBUGS-2996
Issue:
While testing the Scorecard plugin in the cluster environment, status icons are not rendering correctly. The same functionality works as expected in the local development environment.
✔️ Checklist