Website: fix typo in start questionnaire answers (#18399)

Related to: https://github.com/fleetdm/confidential/issues/6152

Changes:
- Updated the value of the "I’d like to deploy Fleet in my environment"
answer of the "What did you think" step of the /start questionnaire
This commit is contained in:
Eric 2024-04-18 12:25:32 -05:00 committed by GitHub
parent 60ec4be047
commit e0fd311831
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ parasails.registerPage('contact', {
}
if(getStartedQuestionnaireAnswers['what-did-you-think']){
// If this user has completed the "What did you think" step and wants to self-host Fleet, we'll assume theyre stage four.
if(getStartedQuestionnaireAnswers['what-did-you-think'].whatDidYouThink === 'deploy-fleet-in-environemnt'){
if(getStartedQuestionnaireAnswers['what-did-you-think'].whatDidYouThink === 'deploy-fleet-in-environment'){
this.buyingStage = 'four';
}
}

View file

@ -424,8 +424,8 @@
<span purpose="custom-radio"><span purpose="custom-radio-selected"></span></span>
Id like you to host Fleet for me
</div>
<label purpose="form-option" class="form-control" :class="[formData['what-did-you-think'].whatDidYouThink === 'deploy-fleet-in-environemnt' ? 'selected' : '']">
<input type="radio" v-model.trim="formData['what-did-you-think'].whatDidYouThink" value="deploy-fleet-in-environemnt" @input="clickClearOneFormError('whatDidYouThink')">
<label purpose="form-option" class="form-control" :class="[formData['what-did-you-think'].whatDidYouThink === 'deploy-fleet-in-environment' ? 'selected' : '']">
<input type="radio" v-model.trim="formData['what-did-you-think'].whatDidYouThink" value="deploy-fleet-in-environment" @input="clickClearOneFormError('whatDidYouThink')">
<span purpose="custom-radio"><span purpose="custom-radio-selected"></span></span>
Id like to deploy Fleet in my environment
</label>