fixes #1179: stop choices.js from escaping choices
This commit is contained in:
parent
4a907600b7
commit
7f41d5eb1e
|
@ -234,7 +234,7 @@ ready(() => {
|
||||||
ready(() => {
|
ready(() => {
|
||||||
document.querySelectorAll('select').forEach((element) => {
|
document.querySelectorAll('select').forEach((element) => {
|
||||||
element.choices = new Choices(element, {
|
element.choices = new Choices(element, {
|
||||||
allowHTML: false,
|
allowHTML: true,
|
||||||
classNames: {
|
classNames: {
|
||||||
containerInner: 'choices__inner form-control',
|
containerInner: 'choices__inner form-control',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue