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
When clicking on [input=radio]. The option on the select will have value=[HTMLInputElement] rather than the actual value of the selected candy on the [input=radio].
The issue causes by having attribute 'name' on the option element with the same name as the scope variable.
Debugged the whole thing, turned out IE created a global variable named candy with a value of '[HTMLInputElement]'. This causes the option value to be '[HTMLInputElement'] Could not find a code that does this.
: data-foreach.ts:48
The text was updated successfully, but these errors were encountered:
[global vars]
[html]
When clicking on
[input=radio]
. Theoption
on the select will havevalue=[HTMLInputElement]
rather than the actual value of the selected candy on the[input=radio]
.The issue causes by having attribute 'name' on the option element with the same name as the scope variable.
Debugged the whole thing, turned out IE created a global variable named
candy
with a value of'[HTMLInputElement]'
. This causes theoption
value to be'[HTMLInputElement'
] Could not find a code that does this.:
data-foreach.ts:48
The text was updated successfully, but these errors were encountered: