This is an automated email from the ASF dual-hosted git repository.

smolnar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git


The following commit(s) were added to refs/heads/master by this push:
     new 32a8efddc KNOX-2980 - Applying word wrapping in various columns that 
can have 'long' content. (#816)
32a8efddc is described below

commit 32a8efddc1b150ad2e23498debe246c676963d52
Author: Sandor Molnar <smol...@apache.org>
AuthorDate: Wed Nov 1 09:32:49 2023 +0100

    KNOX-2980 - Applying word wrapping in various columns that can have 'long' 
content. (#816)
---
 .../token-management/app/token.management.component.html          | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/knox-token-management-ui/token-management/app/token.management.component.html 
b/knox-token-management-ui/token-management/app/token.management.component.html
index f011251da..8751d1e5f 100644
--- 
a/knox-token-management-ui/token-management/app/token.management.component.html
+++ 
b/knox-token-management-ui/token-management/app/token.management.component.html
@@ -59,7 +59,7 @@
 
             <ng-container matColumnDef="tokenId">
                 <mat-header-cell *matHeaderCellDef mat-sort-header="tokenId" 
style="text-align: center; justify-content: center;">Token ID</mat-header-cell>
-                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center;" 
[style.font-weight]="getFontWeight(knoxToken)">
+                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center; word-wrap:break-word; word-break: break-word;" 
[style.font-weight]="getFontWeight(knoxToken)">
                   <div 
*ngIf="knoxToken.metadata.enabled">{{knoxToken.tokenId}}</div>
                   <div *ngIf="!knoxToken.metadata.enabled" 
style="color:orange">{{knoxToken.tokenId}}</div>
                 </mat-cell>
@@ -67,17 +67,17 @@
 
             <ng-container matColumnDef="issued">
                 <mat-header-cell *matHeaderCellDef mat-sort-header="issueTime" 
style="text-align: center; justify-content: center;">Issued</mat-header-cell>
-                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center;" 
[style.font-weight]="getFontWeight(knoxToken)">{{formatDateTime(knoxToken.issueTimeLong)}}</mat-cell>
+                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center; word-wrap:break-word; word-break: break-word;" 
[style.font-weight]="getFontWeight(knoxToken)">{{formatDateTime(knoxToken.issueTimeLong)}}</mat-cell>
             </ng-container>
 
             <ng-container matColumnDef="expires">
                 <mat-header-cell *matHeaderCellDef 
mat-sort-header="expiration" style="text-align: center; justify-content: 
center;">Expires</mat-header-cell>
-                <mat-cell *matCellDef="let knoxToken" 
[style.color]="getExpirationColor(knoxToken.expirationLong)" style="text-align: 
center; justify-content: center;" 
[style.font-weight]="getFontWeight(knoxToken)">{{formatDateTime(knoxToken.expirationLong)}}</mat-cell>
+                <mat-cell *matCellDef="let knoxToken" 
[style.color]="getExpirationColor(knoxToken.expirationLong)" style="text-align: 
center; justify-content: center; word-wrap:break-word; word-break: break-word;" 
[style.font-weight]="getFontWeight(knoxToken)">{{formatDateTime(knoxToken.expirationLong)}}</mat-cell>
             </ng-container>
 
             <ng-container matColumnDef="userName">
                 <mat-header-cell *matHeaderCellDef mat-sort-header="userName" 
style="text-align: center; justify-content: center;">User Name</mat-header-cell>
-                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center;" 
[style.font-weight]="getFontWeight(knoxToken)">{{knoxToken.metadata.userName}}</mat-cell>
+                <mat-cell *matCellDef="let knoxToken" style="text-align: 
center; justify-content: center; word-wrap:break-word; word-break: break-word;" 
[style.font-weight]="getFontWeight(knoxToken)">{{knoxToken.metadata.userName}}</mat-cell>
             </ng-container>
 
             <ng-container matColumnDef="impersonated">

Reply via email to