diff --git a/umap/static/umap/js/modules/tableeditor.js b/umap/static/umap/js/modules/tableeditor.js index 343d7a40..21cc8778 100644 --- a/umap/static/umap/js/modules/tableeditor.js +++ b/umap/static/umap/js/modules/tableeditor.js @@ -214,7 +214,7 @@ export default class TableEditor extends WithTemplate { const field = `properties.${property}` const tr = event.target.closest('tr') const feature = this.datalayer.getFeatureById(tr.dataset.feature) - const handler = property === 'description' ? 'Textarea' : 'BlurInput' + const handler = property === 'description' ? 'Textarea' : 'Input' const builder = new U.FormBuilder(feature, [[field, { handler }]], { id: `umap-feature-properties_${L.stamp(feature)}`, })