Toggle option for organization providing assistance

This commit is contained in:
Patrick Smith
2018-08-10 14:52:08 -04:00
parent f53e656475
commit 6e763773b5
2 changed files with 10 additions and 3 deletions

View File

@@ -19,12 +19,14 @@ export default {
data: function () {
const {
estimated_monthly_spend = 0,
jedi_migration = ''
jedi_migration = '',
technical_support_team = ''
} = this.initialData
return {
estimated_monthly_spend,
jedi_migration
jedi_migration,
technical_support_team
}
},
@@ -42,6 +44,9 @@ export default {
},
isJediMigration: function () {
return this.jedi_migration === 'yes'
},
hasTechnicalSupportTeam: function () {
return this.technical_support_team === 'yes'
}
},