mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-22 11:45:59 +01:00
AC-2057 3dot menu missing in individual vault (#7529)
* update individual vault so 3dot menu shows in cipher row
This commit is contained in:
parent
5fb35df71a
commit
2347b96dba
@ -65,7 +65,7 @@
|
|||||||
></app-collection-badge>
|
></app-collection-badge>
|
||||||
</td>
|
</td>
|
||||||
<td bitCell [ngClass]="RowHeightClass" *ngIf="showGroups"></td>
|
<td bitCell [ngClass]="RowHeightClass" *ngIf="showGroups"></td>
|
||||||
<td bitCell [ngClass]="RowHeightClass" *ngIf="!showCollections"></td>
|
<td bitCell [ngClass]="RowHeightClass" *ngIf="viewingOrgVault"></td>
|
||||||
<td bitCell [ngClass]="RowHeightClass" class="tw-text-right">
|
<td bitCell [ngClass]="RowHeightClass" class="tw-text-right">
|
||||||
<button
|
<button
|
||||||
[disabled]="disabled"
|
[disabled]="disabled"
|
||||||
|
@ -26,6 +26,7 @@ export class VaultCipherRowComponent {
|
|||||||
@Input() cloneable: boolean;
|
@Input() cloneable: boolean;
|
||||||
@Input() organizations: Organization[];
|
@Input() organizations: Organization[];
|
||||||
@Input() collections: CollectionView[];
|
@Input() collections: CollectionView[];
|
||||||
|
@Input() viewingOrgVault: boolean;
|
||||||
|
|
||||||
@Output() onEvent = new EventEmitter<VaultItemEvent>();
|
@Output() onEvent = new EventEmitter<VaultItemEvent>();
|
||||||
|
|
||||||
|
@ -103,6 +103,7 @@
|
|||||||
[showGroups]="showGroups"
|
[showGroups]="showGroups"
|
||||||
[showPremiumFeatures]="showPremiumFeatures"
|
[showPremiumFeatures]="showPremiumFeatures"
|
||||||
[useEvents]="useEvents"
|
[useEvents]="useEvents"
|
||||||
|
[viewingOrgVault]="viewingOrgVault"
|
||||||
[cloneable]="canClone(item)"
|
[cloneable]="canClone(item)"
|
||||||
[organizations]="allOrganizations"
|
[organizations]="allOrganizations"
|
||||||
[collections]="allCollections"
|
[collections]="allCollections"
|
||||||
|
@ -47,6 +47,7 @@ export class VaultItemsComponent {
|
|||||||
@Input() allGroups: GroupView[] = [];
|
@Input() allGroups: GroupView[] = [];
|
||||||
@Input() showBulkEditCollectionAccess = false;
|
@Input() showBulkEditCollectionAccess = false;
|
||||||
@Input() showPermissionsColumn = false;
|
@Input() showPermissionsColumn = false;
|
||||||
|
@Input() viewingOrgVault: boolean;
|
||||||
|
|
||||||
private _ciphers?: CipherView[] = [];
|
private _ciphers?: CipherView[] = [];
|
||||||
@Input() get ciphers(): CipherView[] {
|
@Input() get ciphers(): CipherView[] {
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
[showAdminActions]="true"
|
[showAdminActions]="true"
|
||||||
(onEvent)="onVaultItemsEvent($event)"
|
(onEvent)="onVaultItemsEvent($event)"
|
||||||
[showBulkEditCollectionAccess]="showBulkEditCollectionAccess$ | async"
|
[showBulkEditCollectionAccess]="showBulkEditCollectionAccess$ | async"
|
||||||
|
[viewingOrgVault]="true"
|
||||||
>
|
>
|
||||||
</app-vault-items>
|
</app-vault-items>
|
||||||
<div
|
<div
|
||||||
|
Loading…
Reference in New Issue
Block a user