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`
This commit is contained in:
Eric 2024-08-01 11:24:07 -05:00 committed by GitHub
parent 2ccc0f79e7
commit 81af71b80a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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') {