Merge pull request #161 from glyptodon/fix-numeric-fields

GUAC-1179: Fix handling of numeric fields
This commit is contained in:
James Muehlner
2015-04-25 12:46:33 -07:00

View File

@@ -183,7 +183,7 @@ angular.module('form').directive('guacFormField', [function formField() {
// Coerce numeric strings to numbers
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
else if ($scope.field.type === 'BOOLEAN')