@topconsultnpm/sdkui-react-beta 6.13.69 → 6.13.70
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.
|
@@ -176,8 +176,7 @@ const TMBlogs = (props) => {
|
|
|
176
176
|
if (blog === undefined)
|
|
177
177
|
return;
|
|
178
178
|
const { id, ownerName, creationTime, description } = blog;
|
|
179
|
-
const
|
|
180
|
-
const formattedText = `${ownerName} (${Globalization.getDateTimeDisplayValue(creationTime)}):\n${cleanDescription}`;
|
|
179
|
+
const formattedText = `${ownerName} (${Globalization.getDateTimeDisplayValue(creationTime)}):\n${description}`;
|
|
181
180
|
let result = [];
|
|
182
181
|
window.navigator.clipboard.writeText(formattedText)
|
|
183
182
|
.then(() => {
|