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
Browsers showing this behavior:
Chrome 58
Firefox 54.0a2
Expected behavior:
The input textfield should show the correct updated value just like the red box will update to the new value at all times.
Actual behavior:
Red box resizes correctly but input textfield does not show the new value.
Steps to reproduce:
*Disclaimer: * I don't know why these steps are needed to reproduce it, but this is the only way you can reproduce. I tried other ways via browser events and they wouldn't reproduce it. So you have to do it exactly like this. I provided a fiddle so it's easier to reproduce for you.
Now open the developer console, in jsfiddle you need to be in the right context so change it like this:
Now enter this in the developer console: observableUser2.age = 95
As you can see, the red box rerenders with the correct value. But the input field (despite displaying the correct value when you query for it as a next possible step,) does not show it visually in the browser.
Fix:
Change line incremental-dom.js:923 from el.setAttribute(name, value); to el[name] = value;
The text was updated successfully, but these errors were encountered:
Browsers showing this behavior:
Chrome 58
Firefox 54.0a2
Expected behavior:
The input textfield should show the correct updated value just like the red box will update to the new value at all times.
Actual behavior:
Red box resizes correctly but input textfield does not show the new value.
Steps to reproduce:
*Disclaimer: * I don't know why these steps are needed to reproduce it, but this is the only way you can reproduce. I tried other ways via browser events and they wouldn't reproduce it. So you have to do it exactly like this. I provided a fiddle so it's easier to reproduce for you.
Now enter this in the developer console:
observableUser2.age = 95
Fix:
Change line incremental-dom.js:923 from
el.setAttribute(name, value);
toel[name] = value;
The text was updated successfully, but these errors were encountered: