Selaa lähdekoodia

Use hpi/core.json (instead of test)

Vijayakrishnan 3 vuotta sitten
vanhempi
commit
608d0cf441

+ 1 - 1
resources/views/app/patient/note/edit-hpi.blade.php

@@ -69,7 +69,7 @@
 
     <?php
     if(!@$template) {
-        $template = 'tech.json';
+        $template = 'hpi/core.json';
     }
     $patient = $note->client;
     $data = $currentReview ? $currentReview : null;

+ 1 - 3
resources/views/app/patient/note/last-hpi.blade.php

@@ -3,9 +3,7 @@
 <div class="<?= $point->last_child_review_point_scoped_note_id === $note->id ? 'bg-warning-mellow p-2 rounded' : '' ?>">
     <div>
         <?php
-        if(!@$template) {
-            $template = 'test.json';
-        }
+        if(!@$template) $template = 'hpi/core.json';
         $data = $parsedReview ? $parsedReview : null;
         ?>
         @include('app.dq-engine.read', compact('template', 'note', 'patient', 'point', 'data'))