From d5359d4615efbae6993d31463bf217eb520995e3 Mon Sep 17 00:00:00 2001 From: Mark Hopkin Date: Thu, 2 Mar 2023 17:28:11 +0000 Subject: [PATCH] [Fleet] Disable FQDN selector by default (#152592) ## Summary Hide the FQDN selector unless experimental feature is enabled. This selector was added as part of https://github.com/elastic/kibana/issues/149059 ### Before: Screenshot 2023-03-02 at 16 15 39 ### After: Screenshot 2023-03-02 at 16 14 52 Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- x-pack/plugins/fleet/common/experimental_features.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/fleet/common/experimental_features.ts b/x-pack/plugins/fleet/common/experimental_features.ts index 8fae99c53ded7..b8861bfbb1caa 100644 --- a/x-pack/plugins/fleet/common/experimental_features.ts +++ b/x-pack/plugins/fleet/common/experimental_features.ts @@ -19,7 +19,7 @@ export const allowedExperimentalValues = Object.freeze({ experimentalDataStreamSettings: false, displayAgentMetrics: true, showIntegrationsSubcategories: false, - agentFqdnMode: true, + agentFqdnMode: false, showExperimentalShipperOptions: false, fleetServerStandalone: false, });