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

docs(guide/Migrating from Previous Versions): Add an issue with HTML … #12052

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/content/guide/migration.ngdoc
Original file line number Diff line number Diff line change
@@ -309,6 +309,21 @@ Now, instead of returning empty object/array, it returns unchanged input.



## HTML tag `select`

### Numeric `option` values
In case your code is using something like this:
<select ng-model="vm.entity.OrderQuantity">
<option value="100">100</option>
<option value="200">200</option>
<option value="300">300</option>
</select>
and `vm.entity.OrderQuantity` is a numeric value, you have to fix the issue, since the provided value is not selected.

For solutions see http://stackoverflow.com/questions/30582906




# Migrating from 1.2 to 1.3