Skip to content

Commit bdadbad

Browse files
devversionjelbourn
authored andcommitted
chore(sort): fix invalid import path (#7148)
* Fixes an incorrect import inside of the sort entry-point of Material. Due to a relative import to the core entry-point, the prerender task fails to execute and the packaging doesn't work properly either.
1 parent 95ab1eb commit bdadbad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/sort/sort-header.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {merge} from 'rxjs/observable/merge';
2828
import {MdSort, MdSortable} from './sort';
2929
import {MdSortHeaderIntl} from './sort-header-intl';
3030
import {getMdSortHeaderNotContainedWithinMdSortError} from './sort-errors';
31-
import {AnimationCurves, AnimationDurations} from '../core/animation/animation';
31+
import {AnimationCurves, AnimationDurations} from '@angular/material/core';
3232

3333
const SORT_ANIMATION_TRANSITION =
3434
AnimationDurations.ENTERING + ' ' + AnimationCurves.STANDARD_CURVE;

0 commit comments

Comments
 (0)