mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
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:
parent
60ec4be047
commit
e0fd311831
2 changed files with 3 additions and 3 deletions
2
website/assets/js/pages/contact.page.js
vendored
2
website/assets/js/pages/contact.page.js
vendored
|
|
@ -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';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
4
website/views/pages/start.ejs
vendored
4
website/views/pages/start.ejs
vendored
|
|
@ -424,8 +424,8 @@
|
|||
<span purpose="custom-radio"><span purpose="custom-radio-selected"></span></span>
|
||||
I’d 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>
|
||||
I’d like to deploy Fleet in my environment
|
||||
</label>
|
||||
|
|
|
|||
Loading…
Reference in a new issue