@tripian/react 9.3.6 → 9.3.7
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/index.js +1 -1
- package/index.js.map +1 -1
- package/min.css +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -27481,7 +27481,7 @@ const DestinationSelect = ({ options, selectedOptionId, onSelectedOptionChange,
|
|
|
27481
27481
|
}
|
|
27482
27482
|
return null;
|
|
27483
27483
|
};
|
|
27484
|
-
const SafeText = ({ text }) => (react_1.default.createElement(
|
|
27484
|
+
const SafeText = ({ text }) => (react_1.default.createElement("span", { contentEditable: false, role: "presentation", suppressContentEditableWarning: true }, text.split(' ').map((part, i) => (
|
|
27485
27485
|
// eslint-disable-next-line react/no-array-index-key
|
|
27486
27486
|
react_1.default.createElement("span", { key: i },
|
|
27487
27487
|
part,
|