There could be more added option update: Here some example: async updateClick(id) { const updatedDescription = prompt("Enter the updated description:"); if (!updatedDescription) return; // If user cancels the prompt const db = getFirestore(app); const notesRef = doc(db, 'notes', id); await setDoc(notesRef, { description: updatedDescription }, { merge: true }); this.refreshNotes(); } this.updateClick(note.id)}>Update Notes
@VenkatachalamRavindran Жыл бұрын
Excellent video.
@croydon21H Жыл бұрын
@8:27 is extends component, super props...old model ??
@eduardonunez151411 ай бұрын
Any github repo??
@kamrankhanofficials Жыл бұрын
its not picking my data from database... although working properly.