lisichatbot 1.8.5 → 1.8.6
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/package.json +1 -1
- package/src/index.js +3 -3
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -587,7 +587,7 @@ function renderOptions(options, field, isSingleSelect = true) {
|
|
|
587
587
|
const optionsWrapper = document.createElement('div');
|
|
588
588
|
optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
|
|
589
589
|
optionsWrapper.style.display = 'flex';
|
|
590
|
-
optionsWrapper.style.
|
|
590
|
+
optionsWrapper.style.flexWrap = 'wrap';
|
|
591
591
|
optionsWrapper.style.alignItems = 'flex-start';
|
|
592
592
|
optionsWrapper.style.gap = '8px';
|
|
593
593
|
|
|
@@ -726,7 +726,7 @@ function renderColorOptions(options, field) {
|
|
|
726
726
|
const optionsWrapper = document.createElement('div');
|
|
727
727
|
optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
|
|
728
728
|
optionsWrapper.style.display = 'flex';
|
|
729
|
-
optionsWrapper.style.
|
|
729
|
+
optionsWrapper.style.flexWrap = 'wrap';
|
|
730
730
|
optionsWrapper.style.alignItems = 'flex-start';
|
|
731
731
|
optionsWrapper.style.gap = '8px';
|
|
732
732
|
|
|
@@ -862,7 +862,7 @@ function renderCustomSelectOptions(options, field, customConfig) {
|
|
|
862
862
|
const optionsWrapper = document.createElement('div');
|
|
863
863
|
optionsWrapper.setAttribute('data-chat-element', 'options-wrapper');
|
|
864
864
|
optionsWrapper.style.display = 'flex';
|
|
865
|
-
optionsWrapper.style.
|
|
865
|
+
optionsWrapper.style.flexWrap = 'wrap';
|
|
866
866
|
optionsWrapper.style.alignItems = 'flex-start';
|
|
867
867
|
optionsWrapper.style.gap = '8px';
|
|
868
868
|
|