Django-React-NotesApp icon indicating copy to clipboard operation
Django-React-NotesApp copied to clipboard

Results 10 Django-React-NotesApp issues
Sort by recently updated
recently updated
newest added

get rid of arguments in Notepage(). then get noteId via: let noteId = useParams().id; history is replaced by useNaviagte. So use let navigate = useNavigate(); Change history.push('') to navigate ('')....

**Problem:** page doesn't update in `LinkItem.js` at `` **Solution:** just update `npm i react-router-dom`

Sometimes(~50%) it need hard page refresh or step back to NotePage and come back to list of notes again

when I Create new note it works first time, from 2nd time it's created in database but doesn't appear on the frontend, when 3rd time I perform create operation 2nd...

![Screenshot_317](https://user-images.githubusercontent.com/50365896/174273627-cd599772-a0d7-4996-8a51-11abcadcd69a.png) ![Screenshot_318](https://user-images.githubusercontent.com/50365896/174273674-13dc98fb-4b78-4229-b247-bbab8c135be7.png)

api/utils def updateNote(request, pk): data = request.data note = Note.objects.get(id=pk) serializer = NoteSerializer(instance=note, data=data) if serializer.is_valid(): serializer.save() return serializer.data

Install jquery using npm