Fixes some bugs from PR feedback

* Fixes bug where new devices on the canvas weren't added to the search dropdown
* Fixes bug with closing the details panel
* Changes the fill color to white for remote-selected devices
* Fixes read-only mode by swapping out move controller for move read-only
* Updates range on the zoom widget
This commit is contained in:
Jared Tabor
2018-03-21 12:55:42 -07:00
committed by Ben Thomasson
parent 8086906a43
commit 883545d4cb
7 changed files with 43 additions and 26 deletions

View File

@@ -175,6 +175,7 @@ _Ready.prototype.onPasteDevice = function (controller, msg_type, message) {
scope.selected_devices.push(device);
device.selected = true;
console.log(c_messages);
scope.$emit('awxNet-addSearchOption', device);
scope.send_control_message(new messages.MultipleMessage(controller.scope.client_id, c_messages));
controller.changeState(Selected2);
};