fixed backup bug + removed console.logs

This commit is contained in:
Hayden
2021-01-09 12:56:20 -09:00
parent b8f7b58da3
commit 1559b015af
8 changed files with 56 additions and 10 deletions

View File

@@ -55,7 +55,6 @@ export default {
},
async mounted() {
this.mealPlan = await api.mealPlans.thisWeek();
console.log(this.mealPlan);
},
methods: {
getOrder(index) {

View File

@@ -56,7 +56,6 @@ export default {
computed: {
newVersion() {
if ((this.latestVersion != null) & (this.latestVersion != this.version)) {
console.log("New Version Avaiable");
return true;
} else {
return false;
@@ -68,7 +67,6 @@ export default {
let response = await axios.get(
"https://api.github.com/repos/hay-kot/mealie/releases/latest"
);
console.log(response);
this.latestVersion = response.data.tag_name;
},
},