mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:57:08 +00:00
Remove debugging statements
This commit is contained in:
@@ -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);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user