@lvce-editor/about-view 4.8.0 → 4.9.0
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/aboutWorkerMain.js +1 -1
- package/package.json +1 -1
package/dist/aboutWorkerMain.js
CHANGED
@@ -810,7 +810,7 @@ const RenderAbout = 3;
|
|
810
810
|
|
811
811
|
const diffType$1 = RenderAbout;
|
812
812
|
const isEqual$1 = (oldState, newState) => {
|
813
|
-
return oldState.productName === newState.productName && oldState.lines === newState.lines;
|
813
|
+
return oldState.productName === newState.productName && JSON.stringify(oldState.lines) === JSON.stringify(newState.lines);
|
814
814
|
};
|
815
815
|
|
816
816
|
const DiffAbout = {
|