We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0930f8e commit 448ebb1Copy full SHA for 448ebb1
backend/api/device.py
@@ -312,6 +312,7 @@ def patch(self, device_id : str):
312
device = device_mgr.get_device(device_id)
313
schema = DeviceSchema()
314
device.update_spec(schema.load(request.json)['specification'])
315
+ device.compute_output_power()
316
from submodule.rs_project import RsProjectManager
317
RsProjectManager.get_instance().set_modified(True)
318
return schema.dump(device), 200
0 commit comments