docs(common): update ngForTrackBy error URL (#34761)
Old URL is redirected to `https://angular.io/api/common/NgForOf#!#change-propagation` which is not exactly `https://angular.io/api/common/NgForOf#change-propagation` PR Close #34761
This commit is contained in:
parent
a7ed74f573
commit
d41988437e
|
@ -155,7 +155,7 @@ export class NgForOf<T, U extends NgIterable<T> = NgIterable<T>> implements DoCh
|
||||||
if (<any>console && <any>console.warn) {
|
if (<any>console && <any>console.warn) {
|
||||||
console.warn(
|
console.warn(
|
||||||
`trackBy must be a function, but received ${JSON.stringify(fn)}. ` +
|
`trackBy must be a function, but received ${JSON.stringify(fn)}. ` +
|
||||||
`See https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html#!#change-propagation for more information.`);
|
`See https://angular.io/api/common/NgForOf#change-propagation for more information.`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this._trackByFn = fn;
|
this._trackByFn = fn;
|
||||||
|
|
Loading…
Reference in New Issue