From 1b4b14c1d796a739c48584c283e552ab12b442c0 Mon Sep 17 00:00:00 2001 From: cruizba Date: Tue, 16 Sep 2025 14:08:25 +0200 Subject: [PATCH] openvidu-deployment: azure - single node - fix azure ui labels --- .../singlenode/azure/createUiDefinition.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/openvidu-deployment/community/singlenode/azure/createUiDefinition.json b/openvidu-deployment/community/singlenode/azure/createUiDefinition.json index 2797b141..483f93c9 100644 --- a/openvidu-deployment/community/singlenode/azure/createUiDefinition.json +++ b/openvidu-deployment/community/singlenode/azure/createUiDefinition.json @@ -160,7 +160,10 @@ { "name": "initialMeetAdminPassword", "type": "Microsoft.Common.PasswordBox", - "label": "Initial Meet Admin Password", + "label": { + "password": "Initial Meet Admin Password", + "confirmPassword": "Confirm Password" + }, "toolTip": "Initial password for the 'admin' user in OpenVidu Meet. If not provided, a random password will be generated.", "constraints": { "required": false, @@ -168,13 +171,19 @@ "validationMessage": "Password can only contain letters, numbers, underscores and hyphens.", "validations": [] }, + "options": { + "hideConfirmation": true + }, "infoMessages": [], "visible": true }, { "name": "initialMeetApiKey", "type": "Microsoft.Common.PasswordBox", - "label": "Initial Meet API Key", + "label": { + "password": "Initial Meet API Key", + "confirmPassword": "Confirm API Key" + }, "toolTip": "Initial API key for OpenVidu Meet. If not provided, no API key will be set and the user can set it later from Meet Console.", "constraints": { "required": false, @@ -182,6 +191,9 @@ "validationMessage": "API key can only contain letters, numbers, underscores and hyphens.", "validations": [] }, + "options": { + "hideConfirmation": true + }, "infoMessages": [], "visible": true }