parent
7babcbd547
commit
935d824112
4 changed files with 58 additions and 11 deletions
|
@ -40,11 +40,19 @@ export default {
|
|||
},
|
||||
|
||||
computed: {
|
||||
selectedApplication: function () {
|
||||
selectedOrganisation: function () {
|
||||
if (!this.application) {
|
||||
return 'All'
|
||||
}
|
||||
|
||||
return 'Rebuilding Acquia'
|
||||
},
|
||||
|
||||
selectedApplication: function () {
|
||||
if (!this.application) {
|
||||
return null
|
||||
}
|
||||
|
||||
return this.application.name
|
||||
},
|
||||
|
||||
|
@ -58,14 +66,6 @@ export default {
|
|||
}
|
||||
|
||||
return this.environment.name
|
||||
},
|
||||
|
||||
selectedOrganisation: function () {
|
||||
if (!this.application) {
|
||||
return null
|
||||
}
|
||||
|
||||
return 'Rebuilding Acquia'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue