@walkspan/chatbot 0.2.15 → 0.2.16
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/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -125,7 +125,8 @@ var FloatingChatbot = ({
|
|
|
125
125
|
href: m.link,
|
|
126
126
|
target: "_blank",
|
|
127
127
|
rel: "noopener noreferrer",
|
|
128
|
-
className: "block mt-2 underline text-white
|
|
128
|
+
className: "block mt-2 underline text-white",
|
|
129
|
+
style: { wordBreak: "break-all", overflowWrap: "break-word" }
|
|
129
130
|
},
|
|
130
131
|
m.link
|
|
131
132
|
)
|
package/dist/index.mjs
CHANGED
|
@@ -89,7 +89,8 @@ var FloatingChatbot = ({
|
|
|
89
89
|
href: m.link,
|
|
90
90
|
target: "_blank",
|
|
91
91
|
rel: "noopener noreferrer",
|
|
92
|
-
className: "block mt-2 underline text-white
|
|
92
|
+
className: "block mt-2 underline text-white",
|
|
93
|
+
style: { wordBreak: "break-all", overflowWrap: "break-word" }
|
|
93
94
|
},
|
|
94
95
|
m.link
|
|
95
96
|
)
|