cleanup: remove logs

This commit is contained in:
Liyas Thomas
2021-05-15 06:47:13 +00:00
committed by GitHub
parent 8e3ecb4c25
commit 76866f78f0
13 changed files with 5 additions and 45 deletions

View File

@@ -369,7 +369,6 @@ export default {
this.collectionsType.selectedTeam.id
)
}
console.log(this.collectionJson)
return this.collectionJson
},
exportJSON() {

View File

@@ -281,9 +281,6 @@ export default {
document.addEventListener("keydown", this._keyListener.bind(this))
this.$subscribeTo(this.teamCollectionAdapter.collections$, (colls) => {
console.log("new tree!")
console.log(colls)
this.teamCollectionsNew = cloneDeep(colls)
})
},
@@ -564,7 +561,6 @@ export default {
}
},
expandCollection(collectionID) {
console.log(collectionID)
this.teamCollectionAdapter.expandCollection(collectionID)
},
removeCollection({ collectionsType, collectionIndex, collectionID }) {
@@ -597,7 +593,6 @@ export default {
this.$toast.success(this.$t("deleted"), {
icon: "delete",
})
console.log(data)
})
.catch((error) => {
// Error

View File

@@ -181,7 +181,6 @@ export default {
this.$toast.success(this.$t("deleted"), {
icon: "delete",
})
console.log(data)
this.$emit("update-team-collections")
this.confirmRemove = false
})