We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8048245 commit 2ff8d1dCopy full SHA for 2ff8d1d
docs/version-5-upgrade.md
@@ -41,7 +41,7 @@ constructor(afDb: AngularFireDatabase) {
41
### 5.0
42
```ts
43
constructor(afDb: AngularFireDatabase) {
44
- afDb.object('items').snapshotChanges().map(action => {
+ afDb.object('items/1').snapshotChanges().map(action => {
45
const $key = action.payload.key;
46
const data = { $key, ...action.payload.val() };
47
return data;
0 commit comments