Skip to content

Commit

Permalink
refactor: correct wrong import in date selection (angular#13129)
Browse files Browse the repository at this point in the history
Fixes an incorrect import in the `date-selection.ts` that breaks the build.

Fixes angular#13123.
  • Loading branch information
crisbeto authored and jelbourn committed Sep 16, 2018
1 parent e279890 commit 175194b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/core/datetime/date-selection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* found in the LICENSE file at https://angular.io/license
*/

import {DateAdapter} from '@angular/material/core';
import {Subject} from 'rxjs';
import {DateAdapter} from './date-adapter';

export abstract class MatDateSelection<D> {
valueChanges = new Subject<void>();
Expand Down

0 comments on commit 175194b

Please sign in to comment.