Fix broken test and linter error

This commit is contained in:
Filipa Lacerda 2017-02-09 17:32:08 +00:00
parent 19bac884c6
commit 482e7ff012
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ module.exports = Vue.component('environment-item', {
* @returns {Boolean}
*/
hasStopAction() {
return this.model['stop_action?'];
return this.model.latest['stop_action?'];
},
/**

View File

@ -55,5 +55,5 @@ const environment = {
module.exports = {
environmentsList,
environment
environment,
};