Skip to content

Commit

Permalink
add fullName to FolderFilter type
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-livefront committed Jan 10, 2025
1 parent c414bfb commit 706c388
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@ export type CipherTypeFilter = ITreeNodeObject & { type: CipherStatus; icon: str
export type CollectionFilter = CollectionAdminView & {
icon: string;
};
export type FolderFilter = FolderView & { icon: string };
export type FolderFilter = FolderView & {
icon: string;
/**
* Full folder name.
*
* Used for when the folder `name` property is be separated into parts.
*/
fullName?: string;
};
export type OrganizationFilter = Organization & { icon: string; hideOptions?: boolean };

0 comments on commit 706c388

Please sign in to comment.