From 3404e6085d7e7b0aaf07d2d3c72272262ba86efc Mon Sep 17 00:00:00 2001
From: Joze RIHTARSIC <joze.rihtarsic@ext.ec.europa.eu>
Date: Thu, 29 Nov 2018 06:08:46 +0100
Subject: [PATCH] - small bugfixes

---
 .../service-group-details-dialog.component.html             | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/smp-angular/src/app/service-group-edit/service-group-details-dialog/service-group-details-dialog.component.html b/smp-angular/src/app/service-group-edit/service-group-details-dialog/service-group-details-dialog.component.html
index 833229722..df0e29bb6 100644
--- a/smp-angular/src/app/service-group-edit/service-group-details-dialog/service-group-details-dialog.component.html
+++ b/smp-angular/src/app/service-group-edit/service-group-details-dialog/service-group-details-dialog.component.html
@@ -62,7 +62,8 @@
                                   [formControl]="dialogForm.controls['users']"
                                   style="height: 200px;  overflow-y: scroll; overflow-x: auto;">
                 <!--                  // if username is null then there must be an cerificate id! -->
-                <mat-list-option *ngFor="let user of lookups.cachedServiceGroupOwnerList" [value]='user'>
+                <mat-list-option  *ngFor="let user of lookups.cachedServiceGroupOwnerList" [value]='user'
+                                  style="max-width: 450px !important; word-wrap: break-word !important; height: auto; min-height: 30px !important;">
                   {{user.username?user.username:user.certificate?.certificateId}}
                 </mat-list-option>
               </mat-selection-list>
@@ -89,7 +90,8 @@
                                    [formControl]="dialogForm.controls['serviceGroupDomains']"
                                    (selectionChange)="onDomainSelectionChanged($event)"
                                    style="height: 200px;  overflow-y: scroll; overflow-x: auto;">
-                <mat-list-option *ngFor="let domain of lookups.cachedDomainList" [value]='domain'>
+                <mat-list-option *ngFor="let domain of lookups.cachedDomainList" [value]='domain'
+                                 style="max-width: 450px !important; word-wrap: break-word !important; height: auto; min-height: 30px !important;">
                   {{domain.domainCode}} ({{domain.smlSubdomain}})
                 </mat-list-option>
               </mat-selection-list>
-- 
GitLab