diff --git a/apps/red-ui/src/app/modules/icons/icons.module.ts b/apps/red-ui/src/app/modules/icons/icons.module.ts
index 538f480ac..c6c6a9291 100644
--- a/apps/red-ui/src/app/modules/icons/icons.module.ts
+++ b/apps/red-ui/src/app/modules/icons/icons.module.ts
@@ -19,6 +19,7 @@ export class IconsModule {
'arrow-up',
'assign',
'assign-me',
+ 'attribute',
'calendar',
'case-sensitive',
'check',
diff --git a/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.scss b/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.scss
deleted file mode 100644
index 2c2b5c84c..000000000
--- a/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-@import '../../../../../assets/styles/red-mixins';
-
-:host {
- display: block;
- position: absolute;
- height: 100%;
- background: white;
- z-index: 1;
- width: 100%;
- @include inset-shadow;
-}
-
-.section {
- padding: 40px;
-
- flex-direction: column;
-
- &:not(:last-child) {
- border-bottom: 1px solid $separator;
- }
-}
-
-p {
- height: 48px;
- width: 234px;
- text-align: center;
- color: #9398a0;
-}
-
-mat-icon {
- width: 60px;
- height: 60px;
- opacity: 10%;
-}
diff --git a/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.ts b/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.ts
deleted file mode 100644
index e3fc293e5..000000000
--- a/apps/red-ui/src/app/modules/projects/components/disabled-for-redaction/disabled-for-redaction.component.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { Component } from '@angular/core';
-
-@Component({
- selector: 'redaction-disabled-for-redaction',
- template:
- "
\n" +
- '
\n' +
- "
{{'file-preview.tabs.is-excluded' | translate}}
\n" +
- '
',
- styleUrls: ['./disabled-for-redaction.component.scss']
-})
-export class DisabledForRedactionComponent {}
diff --git a/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.html b/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.html
deleted file mode 100644
index a89955182..000000000
--- a/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
diff --git a/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.scss b/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.scss
deleted file mode 100644
index e69de29bb..000000000
diff --git a/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.ts b/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.ts
deleted file mode 100644
index 19a09cd23..000000000
--- a/apps/red-ui/src/app/modules/projects/components/empty-states/project-listing-empty/project-listing-empty.component.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { Component, EventEmitter, Output } from '@angular/core';
-import { UserService } from '../../../../../services/user.service';
-
-@Component({
- selector: 'redaction-project-listing-empty',
- templateUrl: './project-listing-empty.component.html',
- styleUrls: ['./project-listing-empty.component.scss']
-})
-export class ProjectListingEmptyComponent {
- @Output() addProjectRequest = new EventEmitter();
-
- constructor(public userService: UserService) {}
-}
diff --git a/apps/red-ui/src/app/modules/projects/projects.module.ts b/apps/red-ui/src/app/modules/projects/projects.module.ts
index b119686c6..46f6b10d9 100644
--- a/apps/red-ui/src/app/modules/projects/projects.module.ts
+++ b/apps/red-ui/src/app/modules/projects/projects.module.ts
@@ -14,7 +14,6 @@ import { CommentsComponent } from './components/comments/comments.component';
import { ProjectDetailsComponent } from './components/project-details/project-details.component';
import { PageIndicatorComponent } from './components/page-indicator/page-indicator.component';
import { NeedsWorkBadgeComponent } from './components/needs-work-badge/needs-work-badge.component';
-import { ProjectListingEmptyComponent } from './components/empty-states/project-listing-empty/project-listing-empty.component';
import { AnnotationActionsComponent } from './components/annotation-actions/annotation-actions.component';
import { ProjectListingDetailsComponent } from './components/project-listing-details/project-listing-details.component';
import { FileActionsComponent } from './components/file-actions/file-actions.component';
@@ -35,7 +34,6 @@ import { PdfViewerDataService } from './services/pdf-viewer-data.service';
import { ManualAnnotationService } from './services/manual-annotation.service';
import { AnnotationDrawService } from './services/annotation-draw.service';
import { AnnotationProcessingService } from './services/annotation-processing.service';
-import { DisabledForRedactionComponent } from './components/disabled-for-redaction/disabled-for-redaction.component';
const screens = [ProjectListingScreenComponent, ProjectOverviewScreenComponent, FilePreviewScreenComponent];
@@ -55,7 +53,6 @@ const components = [
PageIndicatorComponent,
NeedsWorkBadgeComponent,
AnnotationActionsComponent,
- ProjectListingEmptyComponent,
ProjectListingDetailsComponent,
TypeAnnotationIconComponent,
TypeFilterComponent,
@@ -65,7 +62,6 @@ const components = [
ProjectListingActionsComponent,
DocumentInfoComponent,
FileWorkloadComponent,
- DisabledForRedactionComponent,
...screens,
...dialogs
diff --git a/apps/red-ui/src/app/modules/projects/screens/file-preview-screen/file-preview-screen.component.html b/apps/red-ui/src/app/modules/projects/screens/file-preview-screen/file-preview-screen.component.html
index 5adc3ea96..d1391ea97 100644
--- a/apps/red-ui/src/app/modules/projects/screens/file-preview-screen/file-preview-screen.component.html
+++ b/apps/red-ui/src/app/modules/projects/screens/file-preview-screen/file-preview-screen.component.html
@@ -208,7 +208,12 @@