@lvce-editor/about-view 4.8.0 → 4.9.0
Sign up to get free protection for your applications and to get access to all the features.
- 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 = {
|