You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
Hi,
I receive an $parse error when using <ui-select-choices repeat="item in itemList track by item.id">
I managed to track down the problem and it seems to be the regex from uisRepeatParser.
The problem seems to be:
source: $parse(!match[3] ? match[5] : match[6]),
match[3] is undefined
match[5] is itemList track by item.id
$parse throws the following error Token 'track' is an unexpected token at column 17 of the expression [itemList track by item.id] starting at [track by item.id].
The text was updated successfully, but these errors were encountered:
Hi,
I receive an
$parse
error when using<ui-select-choices repeat="item in itemList track by item.id">
I managed to track down the problem and it seems to be the regex from
uisRepeatParser
.The problem seems to be:
source: $parse(!match[3] ? match[5] : match[6]),
match[3]
isundefined
match[5]
isitemList track by item.id
$parse
throws the following errorToken 'track' is an unexpected token at column 17 of the expression [itemList track by item.id] starting at [track by item.id]
.The text was updated successfully, but these errors were encountered: