diff --git a/apps/red-ui/src/app/models/file/annotation.wrapper.ts b/apps/red-ui/src/app/models/file/annotation.wrapper.ts index 17f028140..2e9a6648a 100644 --- a/apps/red-ui/src/app/models/file/annotation.wrapper.ts +++ b/apps/red-ui/src/app/models/file/annotation.wrapper.ts @@ -425,7 +425,7 @@ export class AnnotationWrapper implements IListable { static #createContent(annotationWrapper: AnnotationWrapper, entry: IRedactionLogEntry, isDocumine: boolean) { let content = ''; if (entry.matchedRule) { - content += `Rule ${entry.matchedRule} matched \n\n`; + content += `Rule ${entry.matchedRule} matched${isDocumine ? ':' : ''} \n\n`; } if (entry.reason) { @@ -444,7 +444,7 @@ export class AnnotationWrapper implements IListable { } if (entry.section) { - let prefix = 'In section: '; + let prefix = `In section${isDocumine ? '' : ':'} `; if (content.length) { prefix = ` ${prefix.toLowerCase()}`; }