From 76e50eaa63da9eaf61e79b617fdb83e2639c6c5a Mon Sep 17 00:00:00 2001 From: Krishna Gupta Date: Wed, 29 Nov 2023 00:56:33 +0530 Subject: [PATCH] fix: No I cursor on text in keyboard shortcut Signed-off-by: Krishna Gupta --- src/components/FeatureList.js | 1 + src/pages/KeyboardShortcutsPage.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/FeatureList.js b/src/components/FeatureList.js index 85195864cdc3..7b0c70372579 100644 --- a/src/components/FeatureList.js +++ b/src/components/FeatureList.js @@ -42,6 +42,7 @@ function FeatureList({menuItems, headline, description}) { iconHeight={60} iconStyles={[styles.mr3, styles.ml3]} interactive={false} + wrapperStyle={[styles.cursorAuto]} /> ))} diff --git a/src/pages/KeyboardShortcutsPage.js b/src/pages/KeyboardShortcutsPage.js index fde4bf5ff3df..c44c6213d3a5 100644 --- a/src/pages/KeyboardShortcutsPage.js +++ b/src/pages/KeyboardShortcutsPage.js @@ -36,7 +36,7 @@ function KeyboardShortcutsPage() { key={shortcut.displayName} title={shortcut.displayName} description={translate(`keyboardShortcutsPage.shortcuts.${shortcut.descriptionKey}`)} - wrapperStyle={styles.ph0} + wrapperStyle={[styles.ph0, styles.cursorAuto]} interactive={false} /> );