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>
|
||||
</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">
|
||||
<button
|
||||
[disabled]="disabled"
|
||||
|
|
|
@ -26,6 +26,7 @@ export class VaultCipherRowComponent {
|
|||
@Input() cloneable: boolean;
|
||||
@Input() organizations: Organization[];
|
||||
@Input() collections: CollectionView[];
|
||||
@Input() viewingOrgVault: boolean;
|
||||
|
||||
@Output() onEvent = new EventEmitter<VaultItemEvent>();
|
||||
|
||||
|
|
|
@ -103,6 +103,7 @@
|
|||
[showGroups]="showGroups"
|
||||
[showPremiumFeatures]="showPremiumFeatures"
|
||||
[useEvents]="useEvents"
|
||||
[viewingOrgVault]="viewingOrgVault"
|
||||
[cloneable]="canClone(item)"
|
||||
[organizations]="allOrganizations"
|
||||
[collections]="allCollections"
|
||||
|
|
|
@ -47,6 +47,7 @@ export class VaultItemsComponent {
|
|||
@Input() allGroups: GroupView[] = [];
|
||||
@Input() showBulkEditCollectionAccess = false;
|
||||
@Input() showPermissionsColumn = false;
|
||||
@Input() viewingOrgVault: boolean;
|
||||
|
||||
private _ciphers?: CipherView[] = [];
|
||||
@Input() get ciphers(): CipherView[] {
|
||||
|
|
|
@ -56,6 +56,7 @@
|
|||
[showAdminActions]="true"
|
||||
(onEvent)="onVaultItemsEvent($event)"
|
||||
[showBulkEditCollectionAccess]="showBulkEditCollectionAccess$ | async"
|
||||
[viewingOrgVault]="true"
|
||||
>
|
||||
</app-vault-items>
|
||||
<div
|
||||
|
|
Loading…
Reference in New Issue