Remove debugging statements

This commit is contained in:
D. Berge
2023-11-13 23:27:19 +01:00
parent 60aaaf9e04
commit 867a534910

View File

@@ -456,9 +456,6 @@ export default {
return; return;
} }
console.log("Current", cur);
console.log("Item", this.activeItem);
console.log("Component", this.activeComponent);
if (!this.activeComponent && this.activeItem?.children?.length) { if (!this.activeComponent && this.activeItem?.children?.length) {
// Automatically expand this item // Automatically expand this item
if (!this.open.includes(cur)) { if (!this.open.includes(cur)) {
@@ -572,7 +569,6 @@ export default {
}, },
merge ([path, value]) { merge ([path, value]) {
console.log("MERGING", path, value);
deepSet(this.configuration, path, value); deepSet(this.configuration, path, value);
}, },
@@ -634,15 +630,10 @@ export default {
const url = URL.createObjectURL(blob); const url = URL.createObjectURL(blob);
const filename = `${this.$route.params.project}-configuration.yaml`; const filename = `${this.$route.params.project}-configuration.yaml`;
console.log(payload);
console.log(filename);
console.log(url);
const element = document.createElement('a'); const element = document.createElement('a');
element.download = filename; element.download = filename;
element.href = url; element.href = url;
element.click(); element.click();
console.log("Download complete. Cleaning up.");
URL.revokeObjectURL(url); URL.revokeObjectURL(url);
}, },