lisichatbot 1.7.8 → 1.7.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisichatbot",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -1051,7 +1051,7 @@ function renderMinMaxInputs(field, customConfig, existingData) {
1051
1051
  rangeWrapper.setAttribute('data-field', field);
1052
1052
  rangeWrapper.style.marginBottom = '16px';
1053
1053
  rangeWrapper.style.display = 'flex';
1054
- rangeWrapper.style.gap = '16px';
1054
+ rangeWrapper.style.gap = '0px';
1055
1055
  rangeWrapper.style.flexWrap = 'wrap';
1056
1056
 
1057
1057
  const showMinMax = existingData !== undefined &&
@@ -1062,7 +1062,7 @@ function renderMinMaxInputs(field, customConfig, existingData) {
1062
1062
 
1063
1063
  const minClone = minTemplate.cloneNode(true);
1064
1064
  minClone.style.display = '';
1065
- minClone.style.marginRight = '16px';
1065
+ minClone.style.marginRight = '0px';
1066
1066
  minClone.style.marginBottom = '12px';
1067
1067
  minClone.style.width = 'auto';
1068
1068
  minClone.style.flex = 'none';