GUAC-1179: Fix handling of numeric fields - use model value, not field value.

This commit is contained in:
Michael Jumper
2015-04-25 12:42:08 -07:00
parent 5af04196de
commit 9b3312f18a

View File

@@ -183,7 +183,7 @@ angular.module('form').directive('guacFormField', [function formField() {
// Coerce numeric strings to numbers // Coerce numeric strings to numbers
if ($scope.field.type === 'NUMERIC') if ($scope.field.type === 'NUMERIC')
$scope.typedValue = (modelValue ? Number($scope.field.value) : null); $scope.typedValue = (modelValue ? Number(modelValue) : null);
// Coerce boolean strings to boolean values // Coerce boolean strings to boolean values
else if ($scope.field.type === 'BOOLEAN') else if ($scope.field.type === 'BOOLEAN')