[#2197] added escape character support for the select field options

This commit is contained in:
Gani Georgiev
2023-09-12 10:18:36 +03:00
parent e1528aedac
commit eb2aa1cfc6
34 changed files with 55 additions and 42 deletions
@@ -6,7 +6,7 @@
export let readonly = null;
export let disabled = null;
$: valueStr = (value || []).join(", ");
$: valueStr = CommonHelper.joinNonEmpty(value, separator + " ");
</script>
<input