ngTagsInput icon indicating copy to clipboard operation
ngTagsInput copied to clipboard

Not compatible with breeze as it is

Open mos379 opened this issue 4 years ago • 0 comments

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?

mos379 avatar Jun 22 '20 10:06 mos379