From 332f491ac71b7388125df1052286070cdc2fd88c Mon Sep 17 00:00:00 2001
From: Pavlo Tkach <3469726+ptkach@users.noreply.github.com>
Date: Mon, 28 Oct 2024 14:20:04 -0400
Subject: [PATCH] Fix cut off status list on domains page (#2601)
---
console-webapp/src/app/domains/domainList.component.html | 6 +++---
console-webapp/src/app/domains/domainList.component.scss | 5 +++++
2 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/console-webapp/src/app/domains/domainList.component.html b/console-webapp/src/app/domains/domainList.component.html
index 8fd74db32..7d84b4f62 100644
--- a/console-webapp/src/app/domains/domainList.component.html
+++ b/console-webapp/src/app/domains/domainList.component.html
@@ -95,9 +95,9 @@
Statuses
- {{
- element.statuses
- }}
+
+ {{ element.statuses?.join(", ") }}
+
diff --git a/console-webapp/src/app/domains/domainList.component.scss b/console-webapp/src/app/domains/domainList.component.scss
index 0e770cf6d..fa391e5f3 100644
--- a/console-webapp/src/app/domains/domainList.component.scss
+++ b/console-webapp/src/app/domains/domainList.component.scss
@@ -36,6 +36,11 @@
.mat-column-registryLock {
max-width: 150px;
}
+ .mat-column-statuses span {
+ padding: 10px 0;
+ overflow: hidden;
+ word-break: break-word;
+ }
}
&__domains-spinner {