Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(datepicker): handle multiple input changes once (#3565)
Previously internally calling

```ts
service.minDate = ...;
service.maxDate = ...;
```
resulted in two observable emissions, one per input change.

Now the API is changed to:

```ts
service.set({minDate: ..., maxDate: ...})
```

which results in a single emission for any number of inputs changed at the same time.

Fixes #3545
  • Loading branch information
maxokorokov committed Feb 7, 2020
1 parent dd1c35d commit 4ac0352
Show file tree
Hide file tree
Showing 4 changed files with 235 additions and 197 deletions.

0 comments on commit 4ac0352

Please sign in to comment.