mirror of
https://github.com/nasa/openmct.git
synced 2024-12-30 09:58:52 +00:00
Trying to fix drop on folders
This commit is contained in:
parent
2539e4008f
commit
e9e6ddd791
@ -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);
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user