Allow moving single nodes using the Move operation (close #8225)

This commit is contained in:
Quincy Morgan
2020-12-02 15:13:33 -05:00
parent 89bde561da
commit ec1c922cda
+1 -2
View File
@@ -17,8 +17,7 @@ export function operationMove(context, selectedIDs) {
operation.available = function() {
return selectedIDs.length > 1 ||
context.entity(selectedIDs[0]).type !== 'node';
return selectedIDs.length > 0;
};