Browse Source

note vitals fix

= 1 year ago
parent
commit
67f7261103

+ 1 - 1
resources/views/app/patient/segment-templates/omega_vitals/edit.blade.php

@@ -50,7 +50,7 @@ $previousVitals = [];
 $previousVitals = \App\Models\Point::where('parent_point_id', $point->id)
     ->where('category', 'REVIEW')
     ->whereIn('added_in_note_id', $last4VisitsIDs)
-    ->orderBy('id', 'ASC')
+    ->orderBy('id', 'DESC')
     ->get();