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
{{ message }}
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
When using angularjs 1.2.x and breeze 1.7.1 it is not possible to correctly use the lib because of the following.
tagsInput.addTag(angular.copy(suggestionList.selected));
By copying the object it is no longer the same entity and therefore will not be recognized as the same when adding it to another object/entity.
Removing the copy solves this issue.
tagsInput.addTag(suggestionList.selected);
I know this is no linger maintained, but I thought I leave this here for anyone else maintaining an older installation...
I couldn't find a reason for the copy, maybe someone knows?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When using angularjs 1.2.x and breeze 1.7.1 it is not possible to correctly use the lib because of the following.
tagsInput.addTag(angular.copy(suggestionList.selected));
By copying the object it is no longer the same entity and therefore will not be recognized as the same when adding it to another object/entity.
Removing the copy solves this issue.
tagsInput.addTag(suggestionList.selected);
I know this is no linger maintained, but I thought I leave this here for anyone else maintaining an older installation...
I couldn't find a reason for the copy, maybe someone knows?
The text was updated successfully, but these errors were encountered: