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
Hello, I have found a bug that seems to only surface in very rare instances. Under the reset method for models, this.value.reset( object ); is used. Since this.value is a Backbone model, calling reset() will most certainly fail. I fixed this by replacing the whole function with return false;. This might not be desirable, so instead perhaps this.value.clear().set(object); would be better?
The text was updated successfully, but these errors were encountered:
Hello, I have found a bug that seems to only surface in very rare instances. Under the reset method for models,
this.value.reset( object );
is used. Sincethis.value
is a Backbone model, callingreset()
will most certainly fail. I fixed this by replacing the whole function withreturn false;
. This might not be desirable, so instead perhapsthis.value.clear().set(object);
would be better?The text was updated successfully, but these errors were encountered: