[SM-463] add link to secrets list; use bitLink in SM tables (#4685)
* add link to secrets list * use bitLink in SM tables * move class to cell
This commit is contained in:
parent
77b43e65e3
commit
ab81758522
|
@ -58,7 +58,7 @@
|
|||
<i class="bwi bwi-collection tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
||||
</td>
|
||||
<td bitCell class="tw-break-all">
|
||||
<a [routerLink]="[project.id]">{{ project.name }}</a>
|
||||
<a bitLink [routerLink]="[project.id]">{{ project.name }}</a>
|
||||
</td>
|
||||
<td bitCell>{{ project.revisionDate | date: "medium" }}</td>
|
||||
<td bitCell>
|
||||
|
|
|
@ -58,8 +58,8 @@
|
|||
<td bitCell class="tw-w-0 tw-pr-0">
|
||||
<i class="bwi bwi-wrench tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
||||
</td>
|
||||
<td bitCell>
|
||||
<a [routerLink]="serviceAccount.id" class="tw-break-all">
|
||||
<td bitCell class="tw-break-all">
|
||||
<a bitLink [routerLink]="serviceAccount.id">
|
||||
{{ serviceAccount.name }}
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
@ -58,7 +58,11 @@
|
|||
<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 class="tw-break-all">{{ secret.name }}</td>
|
||||
<td bitCell class="tw-break-all">
|
||||
<button type="button" bitLink (click)="editSecretEvent.emit(secret.id)">
|
||||
{{ secret.name }}
|
||||
</button>
|
||||
</td>
|
||||
<td bitCell>
|
||||
<span
|
||||
*ngFor="let project of secret.projects"
|
||||
|
|
Loading…
Reference in New Issue