Skip to content

Commit 332f491

Browse files
authored
Fix cut off status list on domains page (#2601)
1 parent 4bd7c18 commit 332f491

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

console-webapp/src/app/domains/domainList.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ <h1>No domains found</h1>
9595

9696
<ng-container matColumnDef="statuses">
9797
<mat-header-cell *matHeaderCellDef>Statuses</mat-header-cell>
98-
<mat-cell *matCellDef="let element">{{
99-
element.statuses
100-
}}</mat-cell>
98+
<mat-cell *matCellDef="let element">
99+
<span>{{ element.statuses?.join(", ") }}</span>
100+
</mat-cell>
101101
</ng-container>
102102

103103
<ng-container matColumnDef="registryLock">

console-webapp/src/app/domains/domainList.component.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636
.mat-column-registryLock {
3737
max-width: 150px;
3838
}
39+
.mat-column-statuses span {
40+
padding: 10px 0;
41+
overflow: hidden;
42+
word-break: break-word;
43+
}
3944
}
4045

4146
&__domains-spinner {

0 commit comments

Comments
 (0)