We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5621a17 + 58929ce commit a611c16Copy full SHA for a611c16
1 file changed
src/components/Search/SearchList/ListItem/ActionCell/index.tsx
@@ -80,6 +80,8 @@ function ActionCell({
80
81
const text = translate(actionTranslationsMap[action]);
82
83
+ const buttonInnerStyles = isSelected && action === CONST.SEARCH.ACTION_TYPES.UNDELETE ? styles.buttonDefaultSelected : {};
84
+
85
return (
86
<Button
87
text={text}
@@ -91,6 +93,7 @@ function ActionCell({
91
93
success={action !== CONST.SEARCH.ACTION_TYPES.UNDELETE}
92
94
isDisabled={isOffline || shouldDisablePointerEvents}
95
shouldStayNormalOnDisable={shouldDisablePointerEvents}
96
+ innerStyles={buttonInnerStyles}
97
isNested
98
sentryLabel={CONST.SENTRY_LABEL.SEARCH.ACTION_CELL_ACTION}
99
/>
0 commit comments