mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 11:52:38 +02:00
fix: use correct icon class in edit feature panel
This commit is contained in:
parent
7660153b3b
commit
15de486425
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ U.FeatureMixin = {
|
||||||
edit: function (e) {
|
edit: function (e) {
|
||||||
if (!this.map.editEnabled || this.isReadOnly()) return
|
if (!this.map.editEnabled || this.isReadOnly()) return
|
||||||
const container = L.DomUtil.create('div', 'umap-feature-container')
|
const container = L.DomUtil.create('div', 'umap-feature-container')
|
||||||
L.DomUtil.createTitle(container, L._('Feature properties'), this.getClassName())
|
L.DomUtil.createTitle(container, L._('Feature properties'), `icon-${this.getClassName()}`)
|
||||||
|
|
||||||
let builder = new U.FormBuilder(
|
let builder = new U.FormBuilder(
|
||||||
this,
|
this,
|
||||||
|
|
Loading…
Reference in a new issue