diff --git a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
index 0e65ec6b1..87e8458a4 100644
--- a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
+++ b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
@@ -79,6 +79,12 @@
{{ pw.project.projectName }}
+
diff --git a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.scss b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.scss
index f63652943..17d96f479 100644
--- a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.scss
+++ b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.scss
@@ -11,6 +11,7 @@
.table-item {
> div {
+ height: 100px;
padding: 0 24px;
}
diff --git a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
index 4adfae501..b4408e4ce 100644
--- a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
+++ b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
@@ -1,5 +1,5 @@
import { ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core';
-import { FileManagementControllerService, Project } from '@redaction/red-ui-http';
+import { FileManagementControllerService, Project, RuleSetModel } from '@redaction/red-ui-http';
import { AppStateService } from '../../state/app-state.service';
import { UserService } from '../../user/user.service';
import { DoughnutChartConfig } from '../../components/simple-doughnut-chart/simple-doughnut-chart.component';
@@ -165,6 +165,10 @@ export class ProjectListingScreenComponent implements OnInit, OnDestroy {
return true;
}
+ public getRuleSet(pw: ProjectWrapper): RuleSetModel {
+ return this.appStateService.getRuleSetById(pw.project.ruleSetId);
+ }
+
public openAddProjectDialog(): void {
this._dialogService.openAddProjectDialog((addResponse) => {
this._calculateData();
diff --git a/apps/red-ui/src/assets/i18n/en.json b/apps/red-ui/src/assets/i18n/en.json
index ba44e6e16..d74d7bf38 100644
--- a/apps/red-ui/src/assets/i18n/en.json
+++ b/apps/red-ui/src/assets/i18n/en.json
@@ -111,7 +111,8 @@
"name": "Document",
"needs-work": "Analyzed",
"owner": "Owner",
- "status": "Status"
+ "status": "Status",
+ "ruleset": "Rule Set"
},
"stats": {
"analyzed-pages": "Pages",
diff --git a/apps/red-ui/src/assets/styles/red-mixins.scss b/apps/red-ui/src/assets/styles/red-mixins.scss
index aa19c514b..b9463a46c 100644
--- a/apps/red-ui/src/assets/styles/red-mixins.scss
+++ b/apps/red-ui/src/assets/styles/red-mixins.scss
@@ -5,6 +5,7 @@
-webkit-line-clamp: $lines;
-webkit-box-orient: vertical;
overflow: hidden;
+ display: block;
@if $lines == 1 {
text-overflow: ellipsis;