Feature/add asset sub class filter (#1188)

* Add asset sub class filter

* Update changelog
This commit is contained in:
Thomas Kaul
2022-08-24 20:53:50 +02:00
committed by GitHub
parent 9d28b63da6
commit 539d3ff754
12 changed files with 196 additions and 57 deletions

View File

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