@capillarytech/creatives-library 7.17.152-alpha.1 → 7.17.152
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/package.json
CHANGED
|
@@ -197,7 +197,11 @@ class Ckeditor extends React.Component { // eslint-disable-line react/prefer-sta
|
|
|
197
197
|
}
|
|
198
198
|
this.setState({ content }, () => {
|
|
199
199
|
if (this.editorInstance) {
|
|
200
|
-
|
|
200
|
+
// Check if the current editor content is different from the new content
|
|
201
|
+
const currentEditorData = this.editorInstance.getData();
|
|
202
|
+
if (currentEditorData !== content) {
|
|
203
|
+
this.editorInstance.setData(content);
|
|
204
|
+
}
|
|
201
205
|
}
|
|
202
206
|
});
|
|
203
207
|
}
|
|
@@ -1591,9 +1591,8 @@ export class Templates extends React.Component { // eslint-disable-line react/pr
|
|
|
1591
1591
|
if (data.expandableDetails && data.expandableDetails.image) {
|
|
1592
1592
|
bodyTextStyle.WebkitLineClamp = 3;
|
|
1593
1593
|
}
|
|
1594
|
-
const isFullMode = this.isFullMode();
|
|
1595
1594
|
result = (
|
|
1596
|
-
<div className=
|
|
1595
|
+
<div className="android-push-message-Container">
|
|
1597
1596
|
<div className="message-pop align-left">
|
|
1598
1597
|
<div className="message-container">
|
|
1599
1598
|
<div className="app-name">
|