diff --git a/apps/red-ui/src/app/screens/file/model/file-status.wrapper.ts b/apps/red-ui/src/app/screens/file/model/file-status.wrapper.ts index 6ced083a9..53214d20c 100644 --- a/apps/red-ui/src/app/screens/file/model/file-status.wrapper.ts +++ b/apps/red-ui/src/app/screens/file/model/file-status.wrapper.ts @@ -16,6 +16,14 @@ export class FileStatusWrapper { return this.fileStatus.lastUploaded; } + get hasImages() { + return this.fileStatus.hasImages; + } + + get hasUpdates() { + return this.fileStatus.hasUpdates && !this.hasRequests; + } + get hasUnappliedSuggestions() { return !this.fileStatus.allManualRedactionsApplied; }