Issue Patterns
Recurring bugs detected across all AgentQA scans. Every pattern is fingerprinted, clustered, and enriched with AI root-cause analysis. Use this to spot systemic issues before they spread.
4 unique patterns tracked
Images Missing Alt Text
Images Missing Alt Text
Images Missing Alt Text
Angular component templates are rendering <img> elements without alt attributes. This likely stems from either missing alt bindings in component templates or a lack of validation in the image component library defaults that should enforce alt attribute presence.
1. Audit all <img> elements in Angular component templates (.html files) and add descriptive alt attributes or alt="" for decorative images 2. If using a shared image component, update its template to require an @Input() alt property and apply it to the <img> alt attribute binding 3. Run an automated accessibility scanner (e.g., axe-core, Pa11y) in the CI/CD pipeline to catch missing alt attributes before deployment 4. Verify the three identified images at https://blindmatrix.software are updated and re-scan to confirm WCAG 2.1 SC 1.1.1 compliance