Fixes linting errors

This commit is contained in:
mabashian
2019-03-05 08:50:43 -05:00
parent 2ff22bd681
commit 6b46c7db8f
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ export default
let scope; let scope;
vm.init = (_scope_, _launch_) => { vm.init = (_scope_) => {
scope = _scope_; scope = _scope_;
scope.parseType = 'yaml'; scope.parseType = 'yaml';

View File

@@ -25,7 +25,7 @@ export default
return [...tags.reduce((map, tag) => map.has(tag.value) ? map : map.set(tag.value, tag), new Map()).values()]; return [...tags.reduce((map, tag) => map.has(tag.value) ? map : map.set(tag.value, tag), new Map()).values()];
}; };
vm.init = (_scope_, _launch_) => { vm.init = (_scope_) => {
scope = _scope_; scope = _scope_;
vm.showJobTags = true; vm.showJobTags = true;