necouchman commented on a change in pull request #690:
URL: https://github.com/apache/guacamole-client/pull/690#discussion_r790319180
##########
File path: guacamole/src/main/frontend/src/app/form/templates/usernameField.html
##########
@@ -0,0 +1,15 @@
+<div class="username-field">
+ <input type="text"
+ ng-attr-id="{{ fieldId }}"
+ ng-attr-list="{{ dataListId }}"
+ ng-attr-name="{{ field.name }}"
+ ng-model="model"
+ ng-disabled="disabled"
+ guac-focus="focused"
+ autocorrect="off"
+ autocapitalize="off">
+ <datalist ng-if="dataListId" ng-attr-id="{{ dataListId }}">
+ <option ng-repeat="option in field.options | orderBy: option"
+ value="{{ option }}">{{ getFieldOption(option) | translate
}}</option>
+ </datalist>
Review comment:
What's this?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]