You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If i use the the item delete button on the editdevice screen it deletes multiple items instead of the one i pressed delete on if there are multiple items with the same item and type in the items list.
This happens even if they are not consecutive in the list.
Is this intentional?
Maybe in the removeItemxxx methods in app.js it should better be: $scope.onDevices[i] === anItem
instead of $scope.onDevices[i].item === anItem.item && $scope.onDevices[i].type === anItem.type
in the loop over xxDevices to determine which one to delete?
The text was updated successfully, but these errors were encountered:
If i use the the item delete button on the editdevice screen it deletes multiple items instead of the one i pressed delete on if there are multiple items with the same item and type in the items list.
This happens even if they are not consecutive in the list.
Is this intentional?
Maybe in the removeItemxxx methods in app.js it should better be:
$scope.onDevices[i] === anItem
instead of
$scope.onDevices[i].item === anItem.item && $scope.onDevices[i].type === anItem.type
in the loop over xxDevices to determine which one to delete?
The text was updated successfully, but these errors were encountered: