diff --git a/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts b/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts index a7665e733..854fdf3e3 100644 --- a/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts +++ b/apps/red-ui/src/app/modules/pdf-viewer/services/annotation-draw.service.ts @@ -75,6 +75,8 @@ export class AnnotationDrawService { const section = this._computeSection(page, getSectionRectangle(table.boundingBox), dossierTemplateId); if (table.experimental) { section.StrokeColor = this.convertColor('#800080'); + } else { + section.StrokeColor = this.convertColor('#dc2626'); } sections.push(section); table.cellsPerRow @@ -83,6 +85,8 @@ export class AnnotationDrawService { const cellSection = this._computeSection(page, getSectionRectangle(row.boundingBox), dossierTemplateId); if (table.experimental) { cellSection.StrokeColor = this.convertColor('#800080'); + } else { + cellSection.StrokeColor = this.convertColor('#dc2626'); } sections.push(cellSection); });