Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit eaf716b

Browse files
committed
clarify documentation
1 parent 4962888 commit eaf716b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ng/directive/ngOptions.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ var ngOptionsMinErr = minErr('ngOptions');
108108
* expression evaluates to `items[0].subItem.id` (which is undefined). As a result, the model value
109109
* is not matched against any `<option>` and the `<select>` appears as having no selected value.
110110
*
111-
* here is the fixed version of the broken example above.
111+
* The solution is to use `$value` variable which provides uniform access to each `item` and
112+
* `ngModel` value. Here is the fixed version of the broken example above.
112113
*
113114
* ```html
114115
* <select ng-options="item.subItem as item.label for item in items track by $value.id" ng-model="selected"></select>

0 commit comments

Comments
 (0)