Skip to content

Commit

Permalink
use the full name of the folder filter when available
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-livefront committed Jan 10, 2025
1 parent b16fe41 commit 70bd316
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/web/src/app/vault/individual-vault/vault.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,11 @@ export class VaultComponent implements OnInit, OnDestroy {
};

editFolder = async (folder: FolderFilter): Promise<void> => {
// If the filter has a fullName populated
if (folder.fullName) {
folder.name = folder.fullName;
}

const dialogRef = AddEditFolderDialogComponent.open(this.dialogService, {
editFolderConfig: { folder },
});
Expand Down

0 comments on commit 70bd316

Please sign in to comment.