Skip to content

Commit

Permalink
Fix missing repository meta data on multi-line links
Browse files Browse the repository at this point in the history
Add repository meta data to all targets when setting a link value to a link repository value on a multi-line link.

fixes alohaeditor#1525
  • Loading branch information
aertmann committed May 24, 2016
1 parent d2d1b3c commit a85023e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plugins/common/ui/lib/port-helper-attribute-field.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ define([
// store the value to be the "reference" value for the currently selected resource item
resourceValue = v;
setAttribute(targetAttribute, item[valueField]);
RepositoryManager.markObject(targetObject, item);
executeForTargets(function (target) {
RepositoryManager.markObject(target, item);
});
} else {
resourceValue = null;
}
Expand Down

0 comments on commit a85023e

Please sign in to comment.