diff --git a/umap/static/umap/js/modules/schema.js b/umap/static/umap/js/modules/schema.js index f0bd3f2e..490daa04 100644 --- a/umap/static/umap/js/modules/schema.js +++ b/umap/static/umap/js/modules/schema.js @@ -30,6 +30,14 @@ export const SCHEMA = { inheritable: true, default: 'DarkBlue', }, + choropleth: { + type: Object, + impacts: ['data'], + }, + cluster: { + type: Object, + impacts: ['data'], + }, dashArray: { impacts: ['data'], type: String, @@ -129,6 +137,10 @@ export const SCHEMA = { label: translate('Display the fullscreen control'), default: true, }, + heat: { + type: Object, + impacts: ['data'], + }, iconClass: { impacts: ['data'], type: String, diff --git a/umap/static/umap/js/umap.forms.js b/umap/static/umap/js/umap.forms.js index f1e41077..624cb8a2 100644 --- a/umap/static/umap/js/umap.forms.js +++ b/umap/static/umap/js/umap.forms.js @@ -527,11 +527,11 @@ L.FormBuilder.IconUrl = L.FormBuilder.BlurInput.extend({ ) } const symbol = L.DomUtil.add( - 'button', - 'flat tab-symbols', - this.tabs, - L._('Symbol') - ), + 'button', + 'flat tab-symbols', + this.tabs, + L._('Symbol') + ), char = L.DomUtil.add( 'button', 'flat tab-chars',