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 having a list of values, assigning anything to the field will actually mark the field as dirty, even if a list was completely the same.
This is mainly because fields receive new array instances, and currently that will make the field consider itself dirty, which is in most cases just wrong.
We need to implement a smarter way of checking the received values, and only mark the field dirty when that's truly the case.
The text was updated successfully, but these errors were encountered:
When having a list of values, assigning anything to the field will actually mark the field as dirty, even if a list was completely the same.
This is mainly because fields receive new array instances, and currently that will make the field consider itself dirty, which is in most cases just wrong.
We need to implement a smarter way of checking the received values, and only mark the field dirty when that's truly the case.
The text was updated successfully, but these errors were encountered: