Browse Source

Minor text change

Vijayakrishnan Krishnan 4 years ago
parent
commit
2c1614a83b

+ 7 - 7
resources/views/app/patient/dashboard.blade.php

@@ -15,7 +15,7 @@
 				return '';
 			}
         }
-        
+
         $vitalMap = [
                 'heightInches' => 'Ht. (in.)',
 				'weightPounds' => 'Wt. (lbs.)',
@@ -34,7 +34,7 @@
 
         foreach($vitalLabels as $l){
             $vitalValues[$l] = [
-                'value' => null, 
+                'value' => null,
                 'effectiveDate' => null
             ];
         }
@@ -45,7 +45,7 @@
                     'value'=>$measurement->value,
                     'effectiveDate' => $measurement->effective_date
                 ];
-            }        
+            }
         }
 
 	?>
@@ -99,7 +99,7 @@
                                     Smoking Status<br/>
                                     <input type="text" class="form-control form-control-sm" name="smokingStatus" value="{{$vitalValues['Smoking Status']['value']}}" placeholder="">
                                 </div>
-                
+
                                 <div class="d-flex align-items-center">
                                     <button class="btn btn-sm btn-primary mr-2" submit>Save</button>
                                     <button class="btn btn-sm btn-default mr-2 border" cancel>Cancel</button>
@@ -629,14 +629,14 @@
             </tbody>
         </table>
     </div>
-                
+
             </div>
             <div class="col-6">
 
                 {{-- dx --}}
                 <div class="mt-2 pb-1">
                     <div class="d-flex align-items-center mb-2 py-2 border-top border-bottom">
-                        <h6 class="my-0 font-weight-bold text-secondary">Dx &amp; Focus Areas</h6>
+                        <h6 class="my-0 font-weight-bold text-secondary">Current Problems / Focus Areas</h6>
                         <span class="mx-2 text-secondary">|</span>
                         <div moe>
                             <a start show class="py-0 font-weight-normal">Add</a>
@@ -1465,7 +1465,7 @@
                         </tbody>
                     </table>
                 </div>
-            
+
                 <div class="mt-4">
                     <div class="d-flex align-items-center mb-2 py-2 border-top border-bottom">
                         <h6 class="my-0 font-weight-bold text-secondary">Care Team</h6>

+ 1 - 1
resources/views/layouts/patient.blade.php

@@ -27,7 +27,7 @@
                             <a class="nav-link" href="{{ route('patients.view.medications', ['patient' => $patient]) }}">Medications</a>
                         </li>
                         <li class="nav-item">
-                            <a class="nav-link" href="{{ route('patients.view.dx-and-focus-areas', ['patient' => $patient]) }}">Dx and Focus Areas</a>
+                            <a class="nav-link" href="{{ route('patients.view.dx-and-focus-areas', ['patient' => $patient]) }}">Current Focus Areas</a>
                         </li>
                         <li class="nav-item">
                             <a class="nav-link" href="{{ route('patients.view.care-team', ['patient' => $patient]) }}">Care Team</a>