small update

This commit is contained in:
Dan Percic 2023-08-02 17:45:36 +03:00
parent bd7b2c8d08
commit 599507e262

View File

@ -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);
});