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 f052651 commit be828ebCopy full SHA for be828eb
apps/demo/src/plugin-demos/firebase-database.ts
@@ -22,6 +22,7 @@ export class DemoModel extends DemoSharedFirebaseDatabase {
22
this.randomData();
23
this.children();
24
this.setData();
25
+ this.issue113();
26
}
27
28
issue105() {
@@ -42,6 +43,18 @@ export class DemoModel extends DemoSharedFirebaseDatabase {
42
43
});
44
45
46
+ issue113() {
47
+ this.database
48
+ .ref('/issues/113')
49
+ .set(2.1)
50
+ .then((v) => {
51
+ console.log('done');
52
+ })
53
+ .catch((e) => {
54
+ console.log('error', e);
55
+ });
56
+ }
57
+
58
setData() {
59
this.database
60
.ref('/person/me')
0 commit comments