From 599507e2625ec8791348f833d1336dd4d5fee2c3 Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Wed, 2 Aug 2023 17:45:36 +0300 Subject: [PATCH] small update --- .../modules/pdf-viewer/services/annotation-draw.service.ts | 4 ++++ 1 file changed, 4 insertions(+) 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); });