Skip to content
Snippets Groups Projects
Commit 2f07f0c3 authored by jakubs's avatar jakubs
Browse files

SSDM-161 fix a problem where managed property script assignment wouldn't update properly

SVN: 36256
parent 305bbf77
No related branches found
No related tags found
No related merge requests found
......@@ -266,7 +266,7 @@ public class EntityTypePropertyTypeBO extends AbstractBusinessObject implements
describeDynamic(assignmentUpdates.isDynamic())));
}
boolean scriptChanged = false;
if (assignment.isDynamic()
if ((assignment.isDynamic() || assignment.isManaged())
&& assignment.getScript().getName().equals(assignmentUpdates.getScriptName()) == false)
{
scriptChanged = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment