We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b499e9e commit cc7058eCopy full SHA for cc7058e
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
@@ -374,6 +374,7 @@ export default {
374
docUser: this.docUser
375
});
376
this.personToShareWith = null;
377
+ this.shareError = null;
378
379
this.shareError = "Not a user of Graphite Wirter";
380
}
0 commit comments