From ba76e90947a0514735ec41b4d1caa2e1bb5ba889 Mon Sep 17 00:00:00 2001 From: Jeff Winn <6961614+jeff-winn@users.noreply.github.com> Date: Mon, 30 May 2022 12:08:13 -0400 Subject: [PATCH] Changing form type to hide the password. --- config.schema.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config.schema.json b/config.schema.json index 6760b600..8d5accd1 100644 --- a/config.schema.json +++ b/config.schema.json @@ -9,13 +9,19 @@ "title": "Email Address", "type": "string", "minLength": 1, - "required": true + "required": true, + "x-schema-form": { + "type": "email" + } }, "password": { "title": "Password", "type": "string", "minLength": 1, - "required": true + "required": true, + "x-schema-form": { + "type": "password" + } }, "appKey": { "title": "Application Key",