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} * @returns {Boolean}
*/ */
hasStopAction() { hasStopAction() {
return this.model['stop_action?']; return this.model.latest['stop_action?'];
}, },
/** /**

View file

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