diff --git a/ApiTestManager/src/components/PropertyTable.js b/ApiTestManager/src/components/PropertyTable.js index 7b7ce86..07b16d7 100644 --- a/ApiTestManager/src/components/PropertyTable.js +++ b/ApiTestManager/src/components/PropertyTable.js @@ -127,11 +127,7 @@ class PropertyTableView { const addButton = this.element.querySelector('.add_property'); if (addButton) { - console.log('Add button found'); // Check if the button is found addButton.addEventListener('click', (event) => { - console.log(event) - console.log(this) - console.log('Add button clicked'); // Check if this gets logged on click this.propertyTable.controller.addProperty(); }); } else {