fixes #1179: stop choices.js from escaping choices

This commit is contained in:
msquare 2023-08-14 10:52:02 +02:00
parent 4a907600b7
commit 7f41d5eb1e
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ ready(() => {
ready(() => {
document.querySelectorAll('select').forEach((element) => {
element.choices = new Choices(element, {
allowHTML: false,
allowHTML: true,
classNames: {
containerInner: 'choices__inner form-control',
},