Skip to content

Commit

Permalink
admin.js: hide password for connection
Browse files Browse the repository at this point in the history
In the editor for connections do not display the
characters of the password but use a input of type
password.

Closes issue #538

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
  • Loading branch information
xypron committed Nov 28, 2018
1 parent 7fb4cef commit d6ceb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/admin/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ myApp.config(['NgAdminConfigurationProvider', function (nga) {
{ value: 'sas', label: 'Shared Access Signature' }
]),
nga.field('name'),
nga.field('pass').label('Password/Key'),
nga.field('pass', 'password').label('Password/Key'),
nga.field('certfile', 'file').label('User Certificate')
.uploadInformation({'url': '/api/upload'}),
nga.field('keyfile', 'file').label('Private Key')
Expand Down

0 comments on commit d6ceb6d

Please sign in to comment.