|
@@ -25,8 +25,10 @@ export function contrastList(newlist, oldlist) {
|
|
|
delete oldlist[i].olditem
|
|
|
}
|
|
|
if (newitem == olditem) {
|
|
|
- if (newlist[i][newitem] != oldlist[i][olditem]) {
|
|
|
- return true
|
|
|
+ if(!(newlist[i][newitem] instanceof Array)){
|
|
|
+ if (newlist[i][newitem] != oldlist[i][olditem]) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|