From d6ceb6dce149e83292491b97f58c6c8be6961fd7 Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Wed, 28 Nov 2018 11:35:34 +0100 Subject: [PATCH] admin.js: hide password for connection 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 --- priv/admin/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/admin/admin.js b/priv/admin/admin.js index 1c9c6f2f..21edfd08 100644 --- a/priv/admin/admin.js +++ b/priv/admin/admin.js @@ -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')