From 76c13a61a6cd97678eebbbe9411831f5204f39da Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 7 Feb 2025 15:35:49 +0100 Subject: [PATCH] fixup: do not show empty helpText for editors and owner fields --- umap/static/umap/js/modules/form/fields.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/umap/static/umap/js/modules/form/fields.js b/umap/static/umap/js/modules/form/fields.js index d04b4196..abbe8494 100644 --- a/umap/static/umap/js/modules/form/fields.js +++ b/umap/static/umap/js/modules/form/fields.js @@ -1251,6 +1251,7 @@ Fields.Range = class extends Fields.FloatInput { Fields.ManageOwner = class extends BaseElement { build() { + super.build() const options = { className: 'edit-owner', on_select: L.bind(this.onSelect, this), @@ -1281,6 +1282,7 @@ Fields.ManageOwner = class extends BaseElement { Fields.ManageEditors = class extends BaseElement { build() { + super.build() const options = { className: 'edit-editors', on_select: L.bind(this.onSelect, this),