We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6a222 commit 40d6f2cCopy full SHA for 40d6f2c
1 file changed
client/src/components/Patient/AppointmentDetails/prescription/Medications.jsx
@@ -31,6 +31,18 @@ const Medications = ({ medications }) => {
31
<td className="p-1.5 sm:p-3 text-gray-600 text-[10px] sm:text-sm">
32
{med.instructions || 'As directed'}
33
</td>
34
+ <td>
35
+ {med.quickmed === true && (
36
+ <a
37
+ href={`/quick-med/medicine/${encodeURIComponent(med.name || med.medicineName)}`}
38
+ target="_blank"
39
+ rel="noopener noreferrer"
40
+ className="quickmed-button"
41
+ >
42
+ See in QuickMed
43
+ </a>
44
+ )}
45
+ </td>
46
</tr>
47
))}
48
</tbody>
0 commit comments