@kerkhoff-ict/solora 2.7.1 → 2.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1872,7 +1872,7 @@ function initDropdowns() {
|
|
|
1872
1872
|
hiddenInput.value = item.dataset.value ?? item.textContent.trim();
|
|
1873
1873
|
drop.dispatchEvent(new CustomEvent("change", { detail: hiddenInput.value }));
|
|
1874
1874
|
};
|
|
1875
|
-
const initialItem = content.querySelector(".dropdown-item.active")
|
|
1875
|
+
const initialItem = content.querySelector(".dropdown-item.active");
|
|
1876
1876
|
if (initialItem) setValue(initialItem);
|
|
1877
1877
|
const toggle = () => drop.classList.toggle("open");
|
|
1878
1878
|
const close = () => drop.classList.remove("open");
|