Feature/support filtering by asset class on the allocations page (#926)

* Support filtering by asset class

* Update changelog
This commit is contained in:
Thomas Kaul
2022-05-16 21:49:22 +02:00
committed by GitHub
parent 4a123c38f2
commit 5cb6e5dec6
8 changed files with 96 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
export interface Filter {
id: string;
label?: string;
type: 'ACCOUNT' | 'SYMBOL' | 'TAG';
type: 'ACCOUNT' | 'ASSET_CLASS' | 'SYMBOL' | 'TAG';
}