diff --git a/docs/content/error/filter/notarray.ngdoc b/docs/content/error/filter/notarray.ngdoc index 4586424de118..264ac8112ed0 100644 --- a/docs/content/error/filter/notarray.ngdoc +++ b/docs/content/error/filter/notarray.ngdoc @@ -49,3 +49,12 @@ You could as well convert the object to an array using a filter such as {{ item }} ``` + +This error might occur as a type error when track by $index is used (Where the value of $index is 0 for the first element which will be used for filtering instead of the array) such as +```html + +
+ {{ item }} +
+``` +You can use the track by $index method at the end after using filters.