[SM-308] fix: add word break to table cells in SM (#4239)

This commit is contained in:
Will Martin 2022-12-19 10:05:13 -05:00 committed by GitHub
parent 2df2f953c2
commit 7447fa7809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@
<td bitCell class="tw-w-0 tw-pr-0">
<i class="bwi bwi-collection tw-text-xl tw-text-muted" aria-hidden="true"></i>
</td>
<td bitCell>
<td bitCell class="tw-break-all">
<a [routerLink]="[project.id]">{{ project.name }}</a>
</td>
<td bitCell>{{ project.revisionDate | date: "medium" }}</td>

View File

@ -52,7 +52,7 @@
<i class="bwi bwi-wrench tw-text-xl tw-text-muted" aria-hidden="true"></i>
</td>
<td bitCell>
<a [routerLink]="serviceAccount.id">
<a [routerLink]="serviceAccount.id" class="tw-break-all">
{{ serviceAccount.name }}
</a>
</td>

View File

@ -51,7 +51,7 @@
<td bitCell class="tw-w-0 tw-pr-0">
<i class="bwi bwi-key tw-text-xl tw-text-muted" aria-hidden="true"></i>
</td>
<td bitCell>{{ secret.name }}</td>
<td bitCell class="tw-break-all">{{ secret.name }}</td>
<td bitCell>
<span
*ngFor="let project of secret.projects"