I am having troubles with setting the default value of a select box in HTML using AngularJS.
Here\'s my scope variable in the controller:
$scope.sensorRe
Try setting $scope.sensorReadingsPerPage = "30" in your controller.
$scope.sensorReadingsPerPage = "30"
Note: It should be a string.