Skip to content

Commit

Permalink
Fix: lubelogger vehicleID not working with labels (#4066)
Browse files Browse the repository at this point in the history
  • Loading branch information
shamoon authored Sep 30, 2024
1 parent 50aa416 commit 2cc38b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/config/service-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ export function cleanServiceGroups(groups) {
if (range !== undefined) cleanedService.widget.range = range;
}
if (type === "lubelogger") {
if (vehicleID !== undefined) cleanedService.widget.vehicleID = vehicleID;
if (vehicleID !== undefined) cleanedService.widget.vehicleID = parseInt(vehicleID, 10);
}
}

Expand Down

0 comments on commit 2cc38b9

Please sign in to comment.