fix: prevent issue in store with existing values in array

This commit is contained in:
Géry Debongnie
2019-04-09 09:40:18 +02:00
parent bf4cbaea33
commit 7ea782bd60
2 changed files with 22 additions and 3 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ function _magifyArray({ raw, key, parent, magic, onDirty }) {
});
}
});
raw.forEach(([value, index]) => {
raw.forEach((value, index) => {
let prop = magify({
raw: value,
key: index,