diff --git a/umap/static/umap/js/modules/tableeditor.js b/umap/static/umap/js/modules/tableeditor.js index 630360f1..ca4b34cc 100644 --- a/umap/static/umap/js/modules/tableeditor.js +++ b/umap/static/umap/js/modules/tableeditor.js @@ -169,14 +169,14 @@ export default class TableEditor extends WithTemplate { const actions = [] if (!this.datalayer.isRemoteLayer()) { const addButton = loadTemplate(` - `) addButton.addEventListener('click', () => this.addProperty()) actions.push(addButton) const deleteButton = loadTemplate(` - `) deleteButton.addEventListener('click', () => this.deleteRows()) @@ -184,7 +184,7 @@ export default class TableEditor extends WithTemplate { } const filterButton = loadTemplate(` - `) filterButton.addEventListener('click', () => this.map.browser.open('filters'))