diff --git a/umap/static/umap/js/modules/form/fields.js b/umap/static/umap/js/modules/form/fields.js index 33002dbc..c3a23bd4 100644 --- a/umap/static/umap/js/modules/form/fields.js +++ b/umap/static/umap/js/modules/form/fields.js @@ -925,7 +925,8 @@ Fields.Url = class extends Fields.Input { Fields.Switch = class extends Fields.CheckBox { getTemplate() { const label = this.properties.label - return `${super.getTemplate()}` + const help = this.properties.helpEntries?.join() || '' + return `${super.getTemplate()}` } build() {