|
@@ -31,7 +31,7 @@ if(count($contentData['items'])) {
|
|
|
?>
|
|
|
<div class="mb-2 <?= @$item["included"] ? '' : 'hide-if-note' ?>">
|
|
|
<div class="">
|
|
|
- <b><?= isset($item["title"]) ? $item["title"] :'' ?></b>
|
|
|
+ <b class="click-to-copy"><?= isset($item["title"]) ? $item["title"] :'' ?></b>
|
|
|
<?= isset($item["icd"]) ? '/ ' . $item["icd"] : '' ?>
|
|
|
<?= isset($item["coa"]) ? '/ ' . $item["coa"] : '' ?>
|
|
|
</div>
|
|
@@ -41,7 +41,7 @@ if(count($contentData['items'])) {
|
|
|
if(!empty($detailPlain)):
|
|
|
?>
|
|
|
<div class="text-secondary font-weight-bold">HPI</div>
|
|
|
- <div class="ml-2"><?= $detailPlain ?></div>
|
|
|
+ <div class="ml-2 click-to-copy"><?= $detailPlain ?></div>
|
|
|
<?php endif; ?>
|
|
|
<?php
|
|
|
$planPlain = isset($item["plan"]) ? $item["plan"] : '';
|
|
@@ -49,7 +49,7 @@ if(count($contentData['items'])) {
|
|
|
if(!empty($planPlain)):
|
|
|
?>
|
|
|
<div class="text-secondary font-weight-bold">Plan</div>
|
|
|
- <div class="ml-2"><?= $planPlain ?></div>
|
|
|
+ <div class="ml-2 click-to-copy"><?= $planPlain ?></div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
<?php
|