mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 06:38:17 +00:00
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