|
@@ -11,10 +11,16 @@
|
|
|
@if ($point->last_child_review_point_scoped_note_id === $note->id)
|
|
|
<span class="text-sm">(updated on this note)</span>
|
|
|
@else
|
|
|
- <a native target="_blank" class="text-sm"
|
|
|
- href="<?= route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $review->note]) ?>">
|
|
|
- Updated <?= relative_friendly_date($review->note->effective_dateest) ?>
|
|
|
- </a>
|
|
|
+ <div class="d-inline position-relative on-click-menu">
|
|
|
+ <span class="text-sm text-primary c-pointer">
|
|
|
+ Updated <?= relative_friendly_date($review->note->effective_dateest) ?>
|
|
|
+ </span>
|
|
|
+ <div menu right class="bg-white border">
|
|
|
+ <a native target="_blank"
|
|
|
+ href="<?= route('patients.view.notes.view.dashboard', ['patient' => $patient, 'note' => $review->note]) ?>"
|
|
|
+ class="px-2 py-1 d-block text-nowrap text-sm">Go to note</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
@endif
|
|
|
@endif
|
|
|
<span class="mx-2 text-secondary text-sm">|</span>
|