mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-28 12:45:45 +01:00
[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>
|
<i class="bwi bwi-collection tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
||||||
</td>
|
</td>
|
||||||
<td bitCell class="tw-break-all">
|
<td bitCell class="tw-break-all">
|
||||||
<a [routerLink]="[project.id]">{{ project.name }}</a>
|
<a bitLink [routerLink]="[project.id]">{{ project.name }}</a>
|
||||||
</td>
|
</td>
|
||||||
<td bitCell>{{ project.revisionDate | date: "medium" }}</td>
|
<td bitCell>{{ project.revisionDate | date: "medium" }}</td>
|
||||||
<td bitCell>
|
<td bitCell>
|
||||||
|
@ -58,8 +58,8 @@
|
|||||||
<td bitCell class="tw-w-0 tw-pr-0">
|
<td bitCell class="tw-w-0 tw-pr-0">
|
||||||
<i class="bwi bwi-wrench tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
<i class="bwi bwi-wrench tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
||||||
</td>
|
</td>
|
||||||
<td bitCell>
|
<td bitCell class="tw-break-all">
|
||||||
<a [routerLink]="serviceAccount.id" class="tw-break-all">
|
<a bitLink [routerLink]="serviceAccount.id">
|
||||||
{{ serviceAccount.name }}
|
{{ serviceAccount.name }}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
@ -58,7 +58,11 @@
|
|||||||
<td bitCell class="tw-w-0 tw-pr-0">
|
<td bitCell class="tw-w-0 tw-pr-0">
|
||||||
<i class="bwi bwi-key tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
<i class="bwi bwi-key tw-text-xl tw-text-muted" aria-hidden="true"></i>
|
||||||
</td>
|
</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>
|
<td bitCell>
|
||||||
<span
|
<span
|
||||||
*ngFor="let project of secret.projects"
|
*ngFor="let project of secret.projects"
|
||||||
|
Loading…
Reference in New Issue
Block a user