From 5d4067080196413e13f1eb4052994d8bdaf31b83 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 18 Sep 2017 20:03:32 +0200 Subject: [PATCH] chore(sort): fix invalid import path * 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. --- src/lib/sort/sort-header.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/sort/sort-header.ts b/src/lib/sort/sort-header.ts index 87a2e80e1080..de8d3628a01e 100644 --- a/src/lib/sort/sort-header.ts +++ b/src/lib/sort/sort-header.ts @@ -28,7 +28,7 @@ import {merge} from 'rxjs/observable/merge'; import {MdSort, MdSortable} from './sort'; import {MdSortHeaderIntl} from './sort-header-intl'; import {getMdSortHeaderNotContainedWithinMdSortError} from './sort-errors'; -import {AnimationCurves, AnimationDurations} from '../core/animation/animation'; +import {AnimationCurves, AnimationDurations} from '@angular/material/core'; const SORT_ANIMATION_TRANSITION = AnimationDurations.ENTERING + ' ' + AnimationCurves.STANDARD_CURVE;