@shoper/phoenix_design_system 1.18.2-20 → 1.18.2-21
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.
|
@@ -312,7 +312,7 @@ exports.HSelect = class HSelect extends phoenix_light_lit_element.PhoenixLightLi
|
|
|
312
312
|
$content.textContent = this.$placeholder;
|
|
313
313
|
}
|
|
314
314
|
else {
|
|
315
|
-
$content.
|
|
315
|
+
$content.innerHTML = this.$placeholder.innerHTML;
|
|
316
316
|
}
|
|
317
317
|
$option.appendChild($content);
|
|
318
318
|
return $option;
|
|
@@ -308,7 +308,7 @@ let HSelect = class HSelect extends PhoenixLightLitElement {
|
|
|
308
308
|
$content.textContent = this.$placeholder;
|
|
309
309
|
}
|
|
310
310
|
else {
|
|
311
|
-
$content.
|
|
311
|
+
$content.innerHTML = this.$placeholder.innerHTML;
|
|
312
312
|
}
|
|
313
313
|
$option.appendChild($content);
|
|
314
314
|
return $option;
|