From 2147e5a612216468c5a5ade7c7a0d74d4cbc0492 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Tue, 12 Mar 2024 17:08:23 +0100 Subject: [PATCH] chore: add missing umap-icon-16 class in browser toggle button --- umap/static/umap/js/modules/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/js/modules/browser.js b/umap/static/umap/js/modules/browser.js index 63f0f86d..bbb6cda4 100644 --- a/umap/static/umap/js/modules/browser.js +++ b/umap/static/umap/js/modules/browser.js @@ -101,7 +101,7 @@ export default class Browser { const headline = parent.querySelector('h5') const toggleList = () => parent.classList.toggle('show-list') headline.innerHTML = '' - const toggle = DomUtil.create('i', 'datalayer-toggle-list', headline) + const toggle = DomUtil.create('i', 'umap-icon-16 datalayer-toggle-list', headline) DomEvent.on(toggle, 'click', toggleList) datalayer.renderToolbox(headline) const name = DomUtil.create('span', 'datalayer-name', headline)