diff --git a/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js b/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js index 98ecd590a..03957b567 100644 --- a/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js +++ b/guacamole/src/main/webapp/app/form/directives/guacLenientTime.js @@ -91,7 +91,7 @@ angular.module('form').directive('guacLenientTime', ['$injector', }]; - // Format time strings as "yyyy-MM-dd" + // Format time strings as "HH:mm:ss" ngModel.$formatters = [function format(modelValue) { return modelValue ? $filter('date')(modelValue, 'HH:mm:ss', 'UTC') : ''; }];