@posva/vuefire-core
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -6,4 +6,15 @@ # Change Log | ||
## [2.1.2](https://github.com/vuejs/vuefire/compare/@posva/vuefire-core@2.1.1...@posva/vuefire-core@2.1.2) (2019-08-06) | ||
### Bug Fixes | ||
* remove usage of fill to support IE ([1346b90](https://github.com/vuejs/vuefire/commit/1346b90)), closes [#332](https://github.com/vuejs/vuefire/issues/332) | ||
## [2.1.1](https://github.com/vuejs/vuefire/compare/@posva/vuefire-core@2.1.0...@posva/vuefire-core@2.1.1) (2019-08-05) | ||
**Note:** Version bump only for package @posva/vuefire-core |
/*! | ||
* @posva/vuefire-core v2.1.1 | ||
* @posva/vuefire-core v2.1.2 | ||
* (c) 2019 Eduardo San Martin Morote | ||
@@ -206,3 +206,3 @@ * @license MIT | ||
// TODO handle array | ||
data[key] = Array(ref.length).fill(null); | ||
data[key] = Array(ref.length); | ||
var oldArray = oldDoc[key] || []; | ||
@@ -209,0 +209,0 @@ // Items that are no longer in the array aren't going to be processed |
/*! | ||
* @posva/vuefire-core v2.1.1 | ||
* @posva/vuefire-core v2.1.2 | ||
* (c) 2019 Eduardo San Martin Morote | ||
@@ -202,3 +202,3 @@ * @license MIT | ||
// TODO handle array | ||
data[key] = Array(ref.length).fill(null); | ||
data[key] = Array(ref.length); | ||
var oldArray = oldDoc[key] || []; | ||
@@ -205,0 +205,0 @@ // Items that are no longer in the array aren't going to be processed |
{ | ||
"name": "@posva/vuefire-core", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Shared code for vue + Firebase apps used by vuefire and vuexfire", | ||
@@ -45,3 +45,3 @@ "author": "Eduardo San Martin Morote <posva13@gmail.com>", | ||
}, | ||
"gitHead": "560f576add733cafcc1838fbdb1292512d4bcbe9" | ||
"gitHead": "65c76271270646edb300a34081ec5cb7f6a3db13" | ||
} |
@@ -40,3 +40,3 @@ import { firestore } from 'firebase' | ||
// TODO handle array | ||
data[key] = Array(ref.length).fill(null) | ||
data[key] = Array(ref.length) | ||
const oldArray = oldDoc[key] || [] | ||
@@ -43,0 +43,0 @@ // Items that are no longer in the array aren't going to be processed |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63995