From 2a7c53f307fdd9a1525f5a78fbf2209504873903 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 9 Sep 2022 13:24:44 -0500 Subject: [PATCH] Reduce the frequency of accidental visual triggers of touchable items --- src/view/com/util/Link.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx index dcb8710f..23d1bd34 100644 --- a/src/view/com/util/Link.tsx +++ b/src/view/com/util/Link.tsx @@ -21,7 +21,11 @@ export const Link = observer(function Link({ store.shell.openModal(new LinkActionsModel(href, title || href)) } return ( - + {children ? children : {title || 'link'}} )