Skip to content

Commit

Permalink
[ADF-5316] - removed unused stream
Browse files Browse the repository at this point in the history
  • Loading branch information
VitoAlbano committed Feb 11, 2021
1 parent 2792b5b commit e1cffc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/core/card-view/models/card-view-selectitem.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ import { CardViewItem } from '../interfaces/card-view-item.interface';
import { DynamicComponentModel } from '../../services/dynamic-component-mapper.service';
import { CardViewBaseItemModel } from './card-view-baseitem.model';
import { CardViewSelectItemProperties, CardViewSelectItemOption } from '../interfaces/card-view.interfaces';
import { BehaviorSubject, Observable, of } from 'rxjs';
import { Observable, of } from 'rxjs';
import { switchMap } from 'rxjs/operators';

export class CardViewSelectItemModel<T> extends CardViewBaseItemModel implements CardViewItem, DynamicComponentModel {
type: string = 'select';
options$: Observable<CardViewSelectItemOption<T>[]>;

displayName$: BehaviorSubject<string> = new BehaviorSubject('');
valueFetch$: Observable<string> = null;

constructor(cardViewSelectItemProperties: CardViewSelectItemProperties<T>) {
Expand Down

0 comments on commit e1cffc0

Please sign in to comment.