You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm playing around with the demo and looking at the implementation. One thing I've notices is that you're using index-based URLs to display patient-details. This is problematic when the underlying dataset changes.
I search for "von" and click on the third patient in the result
I get redirected to /patient/2
Another Patient with "von" in its name is added
At some later point, I reload the page. I may or may not see a different patient's details because the new patient may or may appear in the search results before the patient I was originally looking at.
A solution would be changing your routing to link to /patient/:id where :id is Patient.id.
The text was updated successfully, but these errors were encountered:
Hello,
I'm playing around with the demo and looking at the implementation. One thing I've notices is that you're using index-based URLs to display patient-details. This is problematic when the underlying dataset changes.
/patient/2
A solution would be changing your routing to link to
/patient/:id
where:id
isPatient.id
.The text was updated successfully, but these errors were encountered: