1
0
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:
Jason Ng 2024-01-12 15:00:11 -05:00 committed by GitHub
parent 5fb35df71a
commit 2347b96dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 1 deletions

View File

@ -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"

View File

@ -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>();

View File

@ -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"

View File

@ -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[] {

View File

@ -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