From 81af71b80a221859a3109a115de143f35b4db7be Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 1 Aug 2024 11:24:07 -0500 Subject: [PATCH] Website: Update questionnaire pre-filling. (#20953) Changes: - Updated the /start questionnaire to not prefill the "What will you use Fleet for?" question if the user has a primaryBuyingSituation set to `vm` --- website/assets/js/pages/start.page.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/website/assets/js/pages/start.page.js b/website/assets/js/pages/start.page.js index 191a445f99..e6f9514e05 100644 --- a/website/assets/js/pages/start.page.js +++ b/website/assets/js/pages/start.page.js @@ -85,7 +85,9 @@ parasails.registerPage('start', { } // If this user has not completed the 'what are you using fleet for' step, and has a primaryBuyingSituation set by an ad. prefill the formData for this step. if(this.primaryBuyingSituation && _.isEmpty(this.formData['what-are-you-using-fleet-for'])){ - this.formData['what-are-you-using-fleet-for'] = {primaryBuyingSituation: this.primaryBuyingSituation}; + if(this.primaryBuyingSituation !== 'vm') { + this.formData['what-are-you-using-fleet-for'] = {primaryBuyingSituation: this.primaryBuyingSituation}; + } } if(window.location.hash) { if(typeof analytics !== 'undefined') {