Skip to content

Commit 175194b

Browse files
crisbetojelbourn
authored andcommitted
refactor: correct wrong import in date selection (#13129)
Fixes an incorrect import in the `date-selection.ts` that breaks the build. Fixes #13123.
1 parent e279890 commit 175194b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/core/datetime/date-selection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {DateAdapter} from '@angular/material/core';
109
import {Subject} from 'rxjs';
10+
import {DateAdapter} from './date-adapter';
1111

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

0 commit comments

Comments
 (0)