Skip to content

Commit

Permalink
Fix missing battery
Browse files Browse the repository at this point in the history
  • Loading branch information
oscgonfer committed Nov 28, 2024
1 parent 8f66076 commit a220535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/kit/showKit/showKit.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
var mainSensors = sensorsRes[0];
var compareSensors = sensorsRes[1];

vm.battery = _.find(mainSensors, {name: 'battery'});
vm.battery = _.find(mainSensors, {name: 'Battery SCK'});
vm.sensors = mainSensors.reverse();
vm.sensors.forEach(checkRaw);
vm.sensors.forEach(getHardwareName);
Expand Down

0 comments on commit a220535

Please sign in to comment.