Skip to content

Commit 2c7bea8

Browse files
committed
WEB-4460 wrap lastReviewed in a container that calls stopPropogation()
1 parent 73a8219 commit 2c7bea8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • app/pages/clinicworkspace/TideDashboardV2

app/pages/clinicworkspace/TideDashboardV2/Cells.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,9 @@ export const MoreMenuCell = ({ patient }) => {
287287
};
288288

289289
export const PatientLastReviewedCell = ({ patient }) => {
290-
return <PatientLastReviewed patient={patient} />;
290+
return <Box onClick={event => event.stopPropagation()}>
291+
<PatientLastReviewed patient={patient} />
292+
</Box>;
291293
};
292294

293295
export default {

0 commit comments

Comments
 (0)