mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
Trying to fix drop on folders
This commit is contained in:
@ -149,7 +149,10 @@ define(
|
||||
broadcastDrop(id, event);
|
||||
} else {
|
||||
$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);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user