From 86d18b061bbc946752eee9da07702c167a096bd5 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Wed, 7 Aug 2019 20:20:43 -0700 Subject: [PATCH] GUACAMOLE-630: Revert expansion of getFieldHeader() functionality, as it is no longer needed. This reverts commit d618bdcabfd4bc34987c5a22c04c7254b7226b7f. --- .../webapp/app/form/directives/formField.js | 20 ++++++------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/guacamole/src/main/webapp/app/form/directives/formField.js b/guacamole/src/main/webapp/app/form/directives/formField.js index 81dacdf2a..41db0c1ca 100644 --- a/guacamole/src/main/webapp/app/form/directives/formField.js +++ b/guacamole/src/main/webapp/app/form/directives/formField.js @@ -85,10 +85,8 @@ angular.module('form').directive('guacFormField', [function formField() { }) + '-' + new Date().getTime().toString(36); /** - * Produces the translation string for the header of the field with - * the given name. If no name is supplied, then the name of the - * current field will be used. The translation string will be of - * the form: + * Produces the translation string for the header of the current + * field. The translation string will be of the form: * * NAMESPACE.FIELD_HEADER_NAME * @@ -96,24 +94,18 @@ angular.module('form').directive('guacFormField', [function formField() { * directive and NAME is the field name transformed * via translationStringService.canonicalize(). * - * @param {String} [name] - * The name of the field to produce the translation header - * string for. If omitted, the name of the current field will - * be used. - * * @returns {String} * The translation string which produces the translated header * of the field. */ - $scope.getFieldHeader = function getFieldHeader(name) { + $scope.getFieldHeader = function getFieldHeader() { // If no field, or no name, then no header - name = name || ($scope.field && $scope.field.name); - if (!name) + if (!$scope.field || !$scope.field.name) return ''; return translationStringService.canonicalize($scope.namespace || 'MISSING_NAMESPACE') - + '.FIELD_HEADER_' + translationStringService.canonicalize(name); + + '.FIELD_HEADER_' + translationStringService.canonicalize($scope.field.name); }; @@ -178,4 +170,4 @@ angular.module('form').directive('guacFormField', [function formField() { }] // end controller }; -}]); \ No newline at end of file +}]);