lisichatbot 1.1.7 → 1.1.8

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 +1 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lisichatbot",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "type": "module",
5
5
  "main": "./src/index.js",
6
6
  "exports": {
package/src/index.js CHANGED
@@ -117,8 +117,7 @@ function addMessage(content, type = 'bot', hasInput = false, stepNumber = null)
117
117
  e.stopPropagation();
118
118
  editStep(stepNumber);
119
119
  };
120
- editIcon.style.setProperty('display', 'inline', 'important');
121
- editIcon.style.setProperty('margin-left', '8px', 'important');
120
+ editIcon.style.setProperty('display', 'block', 'important');
122
121
  console.log(` ✏️ Edit icon SHOWN (step ${stepNumber} has input)`);
123
122
  } else {
124
123
  console.log(` ⚪ Edit icon HIDDEN (step ${stepNumber || 'N/A'} has no input)`);