selct box can use numbers as value in the card view (#6020)

This commit is contained in:
Eugenio Romano
2020-08-17 21:31:01 +01:00
committed by GitHub
parent a4632cf9a5
commit beeb3ad080
3 changed files with 39 additions and 7 deletions

View File

@@ -24,6 +24,6 @@ export interface CardViewSelectItemOption<T> {
}
export interface CardViewSelectItemProperties<T> extends CardViewItemProperties {
value: string;
value: string | number;
options$: Observable<CardViewSelectItemOption<T>[]>;
}