This commit is contained in:
wh1te909
2020-09-11 02:38:16 +00:00
parent 0af30aa92a
commit 62da21609b
83 changed files with 769 additions and 379 deletions

View File

@@ -100,7 +100,7 @@ export default {
methods: {
awaitingSync(total, passing, failing) {
return total !== 0 && passing === 0 && failing === 0 ? true : false;
}
},
},
computed: {
summary() {
@@ -117,8 +117,8 @@ export default {
ret.push(v);
}
return ret;
}
}
},
},
};
</script>