Skip to content

Commit

Permalink
chore: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
waterplea committed Feb 22, 2023
1 parent 9134a4b commit c8cfd43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import {Directive, Input, OnChanges} from '@angular/core';
import {tuiAsDriver, TuiDriver} from '@taiga-ui/core/abstract';
import {Subject} from 'rxjs';
import {BehaviorSubject} from 'rxjs';

@Directive({
selector: '[tuiDropdown][tuiDropdownManual]',
providers: [tuiAsDriver(TuiDropdownManualDirective)],
})
export class TuiDropdownManualDirective extends TuiDriver implements OnChanges {
private readonly stream$ = new Subject<boolean>();
private readonly stream$ = new BehaviorSubject(false);

@Input()
tuiDropdownManual = false;
Expand Down

0 comments on commit c8cfd43

Please sign in to comment.