File tree 1 file changed +1
-1
lines changed
src/components/SelectionList/Search
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ function ActionCell({
51
51
const text = isChildListItem ? translate ( actionTranslationsMap [ CONST . SEARCH . ACTION_TYPES . VIEW ] ) : translate ( actionTranslationsMap [ action ] ) ;
52
52
const shouldUseViewAction = action === CONST . SEARCH . ACTION_TYPES . VIEW || ( parentAction === CONST . SEARCH . ACTION_TYPES . PAID && action === CONST . SEARCH . ACTION_TYPES . PAID ) ;
53
53
54
- if ( ( parentAction !== CONST . SEARCH . ACTION_TYPES . PAID && action === CONST . SEARCH . ACTION_TYPES . PAID ) || ( action === CONST . SEARCH . ACTION_TYPES . DONE && ! isChildListItem ) ) {
54
+ if ( ! isChildListItem && ( ( parentAction !== CONST . SEARCH . ACTION_TYPES . PAID && action === CONST . SEARCH . ACTION_TYPES . PAID ) || action === CONST . SEARCH . ACTION_TYPES . DONE ) ) {
55
55
return (
56
56
< View style = { [ StyleUtils . getHeight ( variables . h28 ) , styles . justifyContentCenter ] } >
57
57
< Badge
You can’t perform that action at this time.
0 commit comments