From ca637ca57d88fb2a99a9deac22901a174dabff3b Mon Sep 17 00:00:00 2001 From: Carlos Monastyrski Date: Wed, 19 Nov 2025 01:01:11 -0300 Subject: [PATCH] Remove wrong tooltip message --- backend/src/services/pki-sync/chef/chef-pki-sync-schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/pki-sync/chef/chef-pki-sync-schemas.ts b/backend/src/services/pki-sync/chef/chef-pki-sync-schemas.ts index bcbf129fc..34e67d652 100644 --- a/backend/src/services/pki-sync/chef/chef-pki-sync-schemas.ts +++ b/backend/src/services/pki-sync/chef/chef-pki-sync-schemas.ts @@ -55,7 +55,7 @@ const ChefPkiSyncOptionsSchema = z.object({ }, { message: - "Certificate item name schema must include {{certificateId}} placeholder and result in names that contain only alphanumeric characters, underscores, and hyphens and be 1-255 characters long for Chef data bag items. Available placeholders: {{certificateId}}, {{profileId}}, {{commonName}}, {{friendlyName}}, {{environment}}" + "Certificate item name schema must include {{certificateId}} placeholder and result in names that contain only alphanumeric characters, underscores, and hyphens and be 1-255 characters long for Chef data bag items." } ) });