Skip to content

Commit

Permalink
#399 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kfchu committed Apr 18, 2018
1 parent 786f58a commit d65bad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saturn-console-web/src/pages/job_detail/job_setting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ export default {
}
arr.forEach((ele) => {
if (ele.includes('=')) {
if (ele.split('=')[0] === '' || ele.split('=')[1] === '') {
if (ele.split('=')[0] === '') {
flag = false;
} else {
flag = true;
Expand Down

0 comments on commit d65bad4

Please sign in to comment.