mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Remove debugging statements
This commit is contained in:
@@ -456,9 +456,6 @@ export default {
|
||||
return;
|
||||
}
|
||||
|
||||
console.log("Current", cur);
|
||||
console.log("Item", this.activeItem);
|
||||
console.log("Component", this.activeComponent);
|
||||
if (!this.activeComponent && this.activeItem?.children?.length) {
|
||||
// Automatically expand this item
|
||||
if (!this.open.includes(cur)) {
|
||||
@@ -572,7 +569,6 @@ export default {
|
||||
},
|
||||
|
||||
merge ([path, value]) {
|
||||
console.log("MERGING", path, value);
|
||||
deepSet(this.configuration, path, value);
|
||||
},
|
||||
|
||||
@@ -634,15 +630,10 @@ export default {
|
||||
const url = URL.createObjectURL(blob);
|
||||
const filename = `${this.$route.params.project}-configuration.yaml`;
|
||||
|
||||
console.log(payload);
|
||||
console.log(filename);
|
||||
console.log(url);
|
||||
|
||||
const element = document.createElement('a');
|
||||
element.download = filename;
|
||||
element.href = url;
|
||||
element.click();
|
||||
console.log("Download complete. Cleaning up.");
|
||||
URL.revokeObjectURL(url);
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user