We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7e9aa63 + cc7058e commit 13623d6Copy full SHA for 13623d6
2 files changed
src/components/documents.vue
@@ -67,11 +67,12 @@ export default {
67
const db = firebase.database();
68
db.ref(`users/${this.uid}/docs`).on("value", snapshot => {
69
this.loading = false;
70
- this.docs = [];
+
71
if (!snapshot.val()) {
72
this.noDocs = true;
73
} else {
74
this.noDocs = false;
75
+ this.docs = [];
76
snapshot.forEach(doc => {
77
let docKey = doc.key;
78
let utc = doc.val().utc;
src/components/editor.vue
@@ -375,6 +375,7 @@ export default {
375
docUser: this.docUser
376
});
377
this.personToShareWith = null;
378
+ this.shareError = null;
379
380
this.shareError = "Not a user of Graphite Wirter";
381
}
0 commit comments