Fixes: U4-3677 Multinode tree picker does not save content when node type is set to Media

This commit is contained in:
Shannon
2013-11-25 16:58:47 +11:00
parent 59599efab6
commit e1ef2e8700

View File

@@ -26,7 +26,8 @@ angular.module('umbraco')
if($scope.cfg.startNode.type === "member"){
$scope.cfg.entityType = "Member";
}else if ($scope.cfg.type === "media") {
}
else if ($scope.cfg.startNode.type === "media") {
$scope.cfg.entityType = "Media";
}