Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upfix(timepicker): When We Enter 60 in Seconds... are not setting to 0 #3572
Conversation
Codecov Report
@@ Coverage Diff @@
## master #3572 +/- ##
==========================================
+ Coverage 91.71% 91.74% +0.03%
==========================================
Files 100 100
Lines 2909 2920 +11
Branches 537 539 +2
==========================================
+ Hits 2668 2679 +11
Misses 183 183
Partials 58 58
Continue to review full report at Codecov.
|
As discussed offline together, for me this is not an Angular false positive, and it is not related to change detection. cc @maxokorokov |
e441343
to
02d42fe
As discussed:
|
4a8878a
to
9b5e392
Attempt to fix #3546 and #3548.
In this case of binding, origin value (model.second) remains the same and destination value (#seconds.input.value) changes. Angular does not correct the destination value, because it detects no change in origin value.
Attempted to fix by forcing the update of destination value.....
@maxokorokov @benouat
Please review