fix/0524_ch
ch 3 years ago
parent f0734d3eb7
commit 2dcc29c2f3

@ -193,10 +193,11 @@
.map((info) => { .map((info) => {
let row = old.find( let row = old.find(
(item) => (item) =>
item.attributeSymbolList.sort().join() === info.attributeSymbolList.sort().join() item.attributeSymbolList.sort().join() ===
[...info.attributeSymbolList].sort().join()
); );
if (row) { if (row) {
Object.assign(info, row); Object.assign(info, row, { attributeSymbolList: info.attributeSymbolList });
} }
return info; return info;
}); });

Loading…
Cancel
Save