lisichatbot 1.9.4 → 1.9.5
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 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -930,9 +930,11 @@ function renderCustomSelectOptions(options, field, customConfig) {
|
|
|
930
930
|
const customClone = existingOption.cloneNode(true);
|
|
931
931
|
customClone.style.display = '';
|
|
932
932
|
|
|
933
|
+
// ✅ Only select custom if existingData is a range AND no normal option matched
|
|
933
934
|
const isCustomSelected = existingData !== undefined &&
|
|
934
935
|
Array.isArray(existingData) &&
|
|
935
|
-
existingData.length === 2
|
|
936
|
+
existingData.length === 2 &&
|
|
937
|
+
!hasMatchingNormalOption; // ✅ Don't select if normal option matched
|
|
936
938
|
|
|
937
939
|
if (isCustomSelected) {
|
|
938
940
|
customClone.classList.add('cf-checked');
|