|
@@ -1,7 +1,7 @@
|
|
<?php if ($point->lastChildReview): ?>
|
|
<?php if ($point->lastChildReview): ?>
|
|
<?php $parsedReview = json_decode($point->lastChildReview->data); ?>
|
|
<?php $parsedReview = json_decode($point->lastChildReview->data); ?>
|
|
<div class="<?= $point->last_child_review_point_scoped_note_id === $note->id ? 'bg-warning-mellow p-2 rounded' : '' ?>">
|
|
<div class="<?= $point->last_child_review_point_scoped_note_id === $note->id ? 'bg-warning-mellow p-2 rounded' : '' ?>">
|
|
- <div><?= @$parsedReview->value ?></div>
|
|
|
|
|
|
+ <div class="inline-html-container"><?= @$parsedReview->value ?></div>
|
|
|
|
|
|
<?php if ($point->last_child_review_point_scoped_note_id === $patient->core_note_id): ?>
|
|
<?php if ($point->last_child_review_point_scoped_note_id === $patient->core_note_id): ?>
|
|
<span class="text-sm">(updated on the patient's chart)</span>
|
|
<span class="text-sm">(updated on the patient's chart)</span>
|
|
@@ -9,9 +9,9 @@
|
|
<?php if ($point->last_child_review_point_scoped_note_id === $note->id): ?>
|
|
<?php if ($point->last_child_review_point_scoped_note_id === $note->id): ?>
|
|
<span class="text-sm">(updated on this note)</span>
|
|
<span class="text-sm">(updated on this note)</span>
|
|
<?php else: ?>
|
|
<?php else: ?>
|
|
- <a native target="_blank"
|
|
|
|
|
|
+ <a native target="_blank" class="text-sm"
|
|
href="<?= route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $point->lastChildReviewNote]) ?>">
|
|
href="<?= route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $point->lastChildReviewNote]) ?>">
|
|
- <?= friendlier_date($point->last_child_review_effective_date) ?>
|
|
|
|
|
|
+ Updated <?= relative_friendly_date($point->last_child_review_effective_date) ?>
|
|
</a>
|
|
</a>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|