Trying to fix drop on folders
This commit is contained in:
@@ -149,7 +149,10 @@ define(
|
|||||||
broadcastDrop(id, event);
|
broadcastDrop(id, event);
|
||||||
} else {
|
} else {
|
||||||
$q.when(action && action.perform()).then(function (result) {
|
$q.when(action && action.perform()).then(function (result) {
|
||||||
navigationService.setNavigation(editableDomainObject);
|
//Don't go into edit mode for folders
|
||||||
|
if (domainObjectType!=='folder') {
|
||||||
|
navigationService.setNavigation(editableDomainObject);
|
||||||
|
}
|
||||||
broadcastDrop(id, event);
|
broadcastDrop(id, event);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user